lokinet/llarp/util/logging/logger.cpp

71 lines
1.3 KiB
C++
Raw Normal View History

2019-09-01 12:10:49 +00:00
#include <util/logging/logger.hpp>
#include <util/logging/logger.h>
#include <util/logging/ostream_logger.hpp>
2019-04-11 12:58:23 +00:00
#if defined(_WIN32)
2019-09-01 12:10:49 +00:00
#include <util/logging/win32_logger.hpp>
2019-04-11 12:58:23 +00:00
#endif
#if defined(ANDROID)
2019-09-01 12:10:49 +00:00
#include <util/logging/android_logger.hpp>
2019-04-11 12:58:23 +00:00
#endif
namespace llarp
{
2019-04-11 12:58:23 +00:00
#if defined(_WIN32)
using Stream_t = Win32LogStream;
#define _LOGSTREAM_INIT std::cout
#else
#if defined(ANDROID)
using Stream_t = AndroidLogStream;
#define _LOGSTREAM_INIT
#else
using Stream_t = OStreamLogStream;
2019-09-16 19:40:31 +00:00
#define _LOGSTREAM_INIT true, std::cout
2019-04-11 12:58:23 +00:00
#endif
#endif
LogContext::LogContext()
: logStream(std::make_unique< Stream_t >(_LOGSTREAM_INIT))
2019-06-10 13:20:48 +00:00
, started(llarp::time_now_ms())
2019-04-11 12:58:23 +00:00
{
}
LogContext&
LogContext::Instance()
{
static LogContext ctx;
return ctx;
}
2019-06-10 13:20:48 +00:00
log_timestamp::log_timestamp() : log_timestamp("%c %Z")
{
}
log_timestamp::log_timestamp(const char* fmt)
: format(fmt)
, now(llarp::time_now_ms())
, delta(llarp::time_now_ms() - LogContext::Instance().started)
{
}
void
SetLogLevel(LogLevel lvl)
{
2019-04-11 12:58:23 +00:00
LogContext::Instance().minLevel = lvl;
}
2018-07-09 03:34:29 +00:00
} // namespace llarp
extern "C"
{
void
cSetLogLevel(LogLevel lvl)
{
llarp::SetLogLevel((llarp::LogLevel)lvl);
}
void
cSetLogNodeName(const char* name)
{
2019-04-11 12:58:23 +00:00
llarp::LogContext::Instance().nodeName = name;
}
}