mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
37 lines
674 B
C++
37 lines
674 B
C++
#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
|
|
PreLog(std::stringstream& s, LogLevel lvl, const char* fname,
|
|
int lineno) const override;
|
|
|
|
void
|
|
Print(LogLevel lvl, const char* tag, const std::string& msg) override;
|
|
|
|
virtual void
|
|
PostLog(std::stringstream& ss) const override;
|
|
|
|
void Tick(llarp_time_t) override
|
|
{
|
|
}
|
|
|
|
private:
|
|
std::ostream& m_Out;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|