lokinet/llarp/util/logging/json_logger.hpp
2019-09-03 20:52:27 +01:00

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