mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
11 lines
104 B
C
11 lines
104 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
enum class LogLevel
|
||
|
|
{
|
||
|
|
Fatal,
|
||
|
|
Error,
|
||
|
|
Warning,
|
||
|
|
Info,
|
||
|
|
Debug,
|
||
|
|
Trace
|
||
|
|
};
|