mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
5c457ff486
* use std::source_location instead of godawful macros in logging * remove unused/absolutely haram af json logstream * fix bug in android logger where it doesn't respect eLogNone
31 lines
572 B
C++
31 lines
572 B
C++
#pragma once
|
|
|
|
#include "logstream.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace llarp
|
|
{
|
|
struct AndroidLogStream : public ILogStream
|
|
{
|
|
void
|
|
PreLog(
|
|
std::stringstream& s,
|
|
LogLevel lvl,
|
|
std::string_view filename,
|
|
int lineno,
|
|
const std::string& nodename) const override;
|
|
|
|
void
|
|
Print(LogLevel lvl, std::string_view filename, const std::string& msg) override;
|
|
|
|
void
|
|
PostLog(std::stringstream&) const override;
|
|
|
|
void Tick(llarp_time_t) override;
|
|
|
|
void
|
|
ImmediateFlush() override{};
|
|
};
|
|
} // namespace llarp
|