mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
33 lines
630 B
C++
33 lines
630 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) const override;
|
||
|
|
||
|
virtual void
|
||
|
PostLog(std::stringstream& ss) const override;
|
||
|
|
||
|
private:
|
||
|
std::ostream& m_Out;
|
||
|
};
|
||
|
} // namespace llarp
|
||
|
|
||
|
#endif
|