stream_log_manager.h 447 B

123456789101112131415
  1. #pragma once
  2. #include <library/cpp/yt/logging/public.h>
  3. namespace NYT::NLogging {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. //! Creates a dead-simple implementation that synchronously logs
  6. //! all events to #output.
  7. std::unique_ptr<ILogManager> CreateStreamLogManager(IOutputStream* output);
  8. ////////////////////////////////////////////////////////////////////////////////
  9. } // namespace NYT::NLogging