mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
273270916e
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.
72 lines
1.6 KiB
C++
72 lines
1.6 KiB
C++
#if defined(ANDROID)
|
|
|
|
#include <util/logging/android_logger.hpp>
|
|
#include <util/logging/logger_internal.hpp>
|
|
|
|
#include <android/log.h>
|
|
namespace llarp
|
|
{
|
|
void
|
|
AndroidLogStream::PreLog(
|
|
std::stringstream& ss, LogLevel lvl, const char* fname, int lineno, const std::string&) const
|
|
{
|
|
switch (lvl)
|
|
{
|
|
case eLogNone:
|
|
return;
|
|
case eLogTrace:
|
|
ss << "[TRC] ";
|
|
break case eLogDebug : ss << "[DBG] ";
|
|
break;
|
|
case eLogInfo:
|
|
ss << "[NFO] ";
|
|
break;
|
|
case eLogWarn:
|
|
ss << "[WRN] ";
|
|
break;
|
|
case eLogError:
|
|
ss << "[ERR] ";
|
|
break;
|
|
}
|
|
|
|
ss << "(" << thread_id_string() << ") " << log_timestamp() << " " << fname << ":" << lineno
|
|
<< "\t";
|
|
}
|
|
|
|
void
|
|
AndroidLogStream::PostLog(std::stringstream&) const
|
|
{
|
|
}
|
|
|
|
void AndroidLogStream::Tick(llarp_time_t)
|
|
{
|
|
}
|
|
|
|
void
|
|
AndroidLogStream::Print(LogLevel lvl, const char* tag, const std::string& msg)
|
|
{
|
|
std::string str("lokinet|");
|
|
str += tag;
|
|
switch (lvl)
|
|
{
|
|
case eLogTrace:
|
|
__android_log_write(ANDROID_LOG_TRACE, str.c_str(), msg.c_str());
|
|
return;
|
|
case eLogDebug:
|
|
__android_log_write(ANDROID_LOG_DEBUG, str.c_str(), msg.c_str());
|
|
return;
|
|
case eLogInfo:
|
|
__android_log_write(ANDROID_LOG_INFO, str.c_str(), msg.c_str());
|
|
return;
|
|
case eLogWarn:
|
|
__android_log_write(ANDROID_LOG_WARN, str.c_str(), msg.c_str());
|
|
return;
|
|
case eLogError:
|
|
__android_log_write(ANDROID_LOG_ERROR, str.c_str(), msg.c_str());
|
|
return;
|
|
}
|
|
|
|
} // namespace llarp
|
|
} // namespace llarp
|
|
#endif
|