mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
27 lines
570 B
C++
27 lines
570 B
C++
#ifndef LLARP_UTIL_ANDROID_LOGGER_HPP
|
|
#define LLARP_UTIL_ANDROID_LOGGER_HPP
|
|
|
|
#include <util/logging/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;
|
|
|
|
void
|
|
Print(LogLevel lvl, const char* filename, const std::string& msg) override;
|
|
|
|
void
|
|
PostLog(std::stringstream&) const override;
|
|
|
|
void Tick(llarp_time_t) override;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|