2019-04-11 13:13:29 +00:00
|
|
|
#ifndef LLARP_UTIL_LOGGER_SYSLOG_HPP
|
|
|
|
#define LLARP_UTIL_LOGGER_SYSLOG_HPP
|
2019-09-01 12:10:49 +00:00
|
|
|
|
|
|
|
#include <util/logging/logstream.hpp>
|
2019-04-11 13:13:29 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct SysLogStream : public ILogStream
|
|
|
|
{
|
|
|
|
void
|
2019-06-13 13:26:34 +00:00
|
|
|
PreLog(std::stringstream& s, LogLevel lvl, const char* fname, int lineno,
|
|
|
|
const std::string& nodename) const override;
|
2019-04-11 13:13:29 +00:00
|
|
|
|
|
|
|
void
|
2019-04-16 13:20:48 +00:00
|
|
|
Print(LogLevel lvl, const char* tag, const std::string& msg) override;
|
2019-04-11 13:13:29 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
PostLog(std::stringstream& ss) const override;
|
2019-04-16 13:20:48 +00:00
|
|
|
|
2019-04-24 23:27:31 +00:00
|
|
|
void Tick(llarp_time_t) override
|
|
|
|
{
|
|
|
|
}
|
2019-04-11 13:13:29 +00:00
|
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|