lokinet/llarp/util/logging/logger_syslog.hpp

27 lines
571 B
C++
Raw Normal View History

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
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;
void Tick(llarp_time_t) override
{
}
2019-04-11 13:13:29 +00:00
};
} // namespace llarp
#endif