#pragma once #include namespace NYT::NLogging { //////////////////////////////////////////////////////////////////////////////// //! Creates a dead-simple implementation that synchronously logs //! all events to #output. std::unique_ptr CreateStreamLogManager(IOutputStream* output); //////////////////////////////////////////////////////////////////////////////// } // namespace NYT::NLogging