lokinet/llarp/util/logging/android_logger.hpp

27 lines
570 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
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 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