mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
22 lines
529 B
C++
22 lines
529 B
C++
#ifndef LLARP_UTIL_JSON_LOGGER
|
|
#define LLARP_UTIL_JSON_LOGGER
|
|
|
|
#include <util/file_logger.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct JSONLogStream : public FileLogStream
|
|
{
|
|
JSONLogStream(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 |