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