blob: 1e2b59ca0d3ebedda38572c73af7bc88f79d7c85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include <library/cpp/yt/misc/enum.h>
namespace NYT::NLogging {
////////////////////////////////////////////////////////////////////////////////
// Any change to this enum must be also propagated to FormatLevel.
DEFINE_ENUM(ELogLevel,
(Minimum)
(Trace)
(Debug)
(Info)
(Warning)
(Error)
(Alert)
(Fatal)
(Maximum)
);
DEFINE_ENUM(ELogFamily,
(PlainText)
(Structured)
);
////////////////////////////////////////////////////////////////////////////////
struct TLoggingCategory;
struct TLoggingAnchor;
struct TLogEvent;
struct TLoggingContext;
class TLogger;
struct ILogManager;
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NLogging
|