mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
23 lines
556 B
C++
23 lines
556 B
C++
#ifndef LLARP_UTIL_JSON_LOGGER
|
|
#define LLARP_UTIL_JSON_LOGGER
|
|
|
|
#include <util/logging/file_logger.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct JSONLogStream : public FileLogStream
|
|
{
|
|
JSONLogStream(std::shared_ptr< thread::ThreadPool > disk, FILE* f,
|
|
llarp_time_t flushInterval, bool closeFile)
|
|
: FileLogStream(disk, f, flushInterval, closeFile)
|
|
{
|
|
}
|
|
|
|
void
|
|
AppendLog(LogLevel lvl, const char* fname, int lineno,
|
|
const std::string& nodename, const std::string msg) override;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|