mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
19 lines
277 B
C++
19 lines
277 B
C++
#ifndef LLARP_UTIL_LOG_LEVEL_HPP
|
|
#define LLARP_UTIL_LOG_LEVEL_HPP
|
|
|
|
namespace llarp
|
|
{
|
|
// probably will need to move out of llarp namespace for c api
|
|
enum LogLevel
|
|
{
|
|
eLogDebug,
|
|
eLogInfo,
|
|
eLogWarn,
|
|
eLogError,
|
|
eLogNone
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|