lokinet/llarp/util/logging/android_logger.hpp
Stephen Shelton 273270916e
The Great Wall of Blame
This commit reflects changes to clang-format rules. Unfortunately,
these rule changes create a massive change to the codebase, which
causes an apparent rewrite of git history.

Git blame's --ignore-rev flag can be used to ignore this commit when
attempting to `git blame` some code.
2020-04-07 12:38:56 -06:00

31 lines
600 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