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