lokinet/llarp/util/ostream_logger.hpp

37 lines
703 B
C++
Raw Normal View History

2019-04-11 12:58:23 +00:00
#ifndef LLARP_UTIL_OSTREAM_LOGGER_HPP
#define LLARP_UTIL_OSTREAM_LOGGER_HPP
#include <util/logstream.hpp>
#include <iostream>
namespace llarp
{
struct OStreamLogStream : public ILogStream
{
OStreamLogStream(std::ostream& out);
~OStreamLogStream()
{
}
virtual 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 12:58:23 +00:00
void
Print(LogLevel lvl, const char* tag, const std::string& msg) override;
2019-04-11 12:58:23 +00:00
virtual void
PostLog(std::stringstream& ss) const override;
void Tick(llarp_time_t) override
{
}
2019-04-11 12:58:23 +00:00
private:
std::ostream& m_Out;
};
} // namespace llarp
#endif