mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
59 lines
1007 B
C++
59 lines
1007 B
C++
#include <util/logger.hpp>
|
|
#include <util/logger.h>
|
|
#include <util/ostream_logger.hpp>
|
|
#if defined(_WIN32)
|
|
#include <util/win32_logger.hpp>
|
|
#endif
|
|
#if defined(ANDROID)
|
|
#include <util/android_logger.hpp>
|
|
#endif
|
|
|
|
namespace llarp
|
|
{
|
|
#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;
|
|
#define _LOGSTREAM_INIT std::cout
|
|
#endif
|
|
#endif
|
|
|
|
LogContext::LogContext()
|
|
: logStream(std::make_unique< Stream_t >(_LOGSTREAM_INIT))
|
|
{
|
|
}
|
|
|
|
LogContext&
|
|
LogContext::Instance()
|
|
{
|
|
static LogContext ctx;
|
|
return ctx;
|
|
}
|
|
|
|
void
|
|
SetLogLevel(LogLevel lvl)
|
|
{
|
|
LogContext::Instance().minLevel = lvl;
|
|
}
|
|
} // namespace llarp
|
|
|
|
extern "C"
|
|
{
|
|
void
|
|
cSetLogLevel(LogLevel lvl)
|
|
{
|
|
llarp::SetLogLevel((llarp::LogLevel)lvl);
|
|
}
|
|
|
|
void
|
|
cSetLogNodeName(const char* name)
|
|
{
|
|
llarp::LogContext::Instance().nodeName = name;
|
|
}
|
|
}
|