diff options
| -rw-r--r-- | include/log.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/include/log.h b/include/log.h index 30fc7fa..695884b 100644 --- a/include/log.h +++ b/include/log.h @@ -5,11 +5,13 @@  namespace nitrokey {  namespace log { -   + +//for MSVC  #ifdef ERROR  #undef ERROR  #endif +  enum class Loglevel : int { DEBUG_L2, DEBUG, INFO, WARNING, ERROR };  class LogHandler {  | 
