spdlog/include/c11log/common_types.h

28 lines
467 B
C
Raw Normal View History

2014-03-02 08:59:18 -05:00
#pragma once
#include <chrono>
namespace c11log {
typedef std::chrono::system_clock log_clock;
namespace level {
typedef enum {
DEBUG,
INFO,
WARNING,
ERROR,
FATAL,
NONE = 99
} level_enum;
const char* to_str(level_enum l);
}
}
static const char* level_names[] { "Debug", "Info", "Warning", "Error", "Fatal" };
inline const char* c11log::level::to_str(c11log::level::level_enum l)
{
return level_names[l];
}