lokinet/llarp/util/android_logger.hpp

26 lines
510 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 AndroidLogStream : public ILogStream
{
void
PreLog(std::stringstream& s, LogLevel lvl, const char* fname,
int lineno) const override;
void
Log(LogLevel lvl, const std::string& msg) override;
void
PostLog(std::stringstream&) const override{};
void Tick(llarp_time_t) override;
2019-04-11 12:58:23 +00:00
};
} // namespace llarp
#endif