lokinet/llarp/util/logging/ostream_logger.hpp

36 lines
753 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
2019-09-01 12:10:49 +00:00
#include <util/logging/logstream.hpp>
2019-04-11 12:58:23 +00:00
#include <iostream>
namespace llarp
{
struct OStreamLogStream : public ILogStream
{
2019-09-16 19:40:31 +00:00
OStreamLogStream(bool withColours, std::ostream& out);
2019-04-11 12:58:23 +00:00
2019-07-30 23:42:13 +00:00
~OStreamLogStream() override = default;
2019-04-11 12:58:23 +00:00
2019-07-30 23:42:13 +00:00
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
2020-02-28 18:44:27 +00:00
virtual void
Print(LogLevel lvl, const char* tag, const std::string& msg) override;
2019-04-11 12:58:23 +00:00
2019-07-30 23:42:13 +00:00
void
2019-04-11 12:58:23 +00:00
PostLog(std::stringstream& ss) const override;
void Tick(llarp_time_t) override
{
}
2019-04-11 12:58:23 +00:00
private:
2019-09-16 19:40:31 +00:00
bool m_withColours;
2019-04-11 12:58:23 +00:00
std::ostream& m_Out;
};
} // namespace llarp
#endif