mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
17 lines
167 B
C++
17 lines
167 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
enum class LogsLevel
|
|
{
|
|
none = 0, /// Disable
|
|
fatal,
|
|
error,
|
|
warning,
|
|
information,
|
|
debug,
|
|
trace,
|
|
test,
|
|
};
|
|
}
|