2019-06-13 13:26:34 +00:00
|
|
|
#ifndef LLARP_UTIL_JSON_LOGGER
|
|
|
|
#define LLARP_UTIL_JSON_LOGGER
|
|
|
|
|
2019-09-01 12:10:49 +00:00
|
|
|
#include <util/logging/file_logger.hpp>
|
2019-06-13 13:26:34 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct JSONLogStream : public FileLogStream
|
|
|
|
{
|
2019-07-09 13:47:24 +00:00
|
|
|
JSONLogStream(std::shared_ptr< thread::ThreadPool > disk, FILE* f,
|
|
|
|
llarp_time_t flushInterval, bool closeFile)
|
2019-06-13 13:26:34 +00:00
|
|
|
: 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
|
|
|
|
|
2019-09-01 12:10:49 +00:00
|
|
|
#endif
|