lokinet/llarp/util/android_logger.hpp

26 lines
561 B
C++
Raw Normal View History

2019-07-24 14:17:54 +00:00
#ifndef LLARP_UTIL_ANDROID_LOGGER_HPP
#define LLARP_UTIL_ANDROID_LOGGER_HPP
2019-04-11 12:58:23 +00:00
#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 std::string& nodename) const override;
2019-04-11 12:58:23 +00:00
void
Print(LogLevel lvl, const char* filename, const std::string& msg) override;
void
2019-07-24 14:17:54 +00:00
PostLog(std::stringstream&) const override;
void Tick(llarp_time_t) override;
2019-04-11 12:58:23 +00:00
};
} // namespace llarp
#endif