Files
amnezia-client/client/mozilla/shared/loglevel.h
T

17 lines
337 B
C
Raw Normal View History

2021-10-23 04:26:47 -07:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2023-07-15 14:19:48 -07:00
#ifndef LOGLEVEL_H
#define LOGLEVEL_H
2021-10-23 04:26:47 -07:00
2023-07-15 14:19:48 -07:00
enum LogLevel {
Trace = 0,
Debug,
Info,
Warning,
Error,
2021-10-23 04:26:47 -07:00
};
2023-07-15 14:19:48 -07:00
#endif // LOGLEVEL_H