Joedb 10.3.0
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Android_Logger.cpp
Go to the documentation of this file.
2#include <android/log.h>
3
4namespace joedb
5{
6 ////////////////////////////////////////////////////////////////////////////
7 Android_Logger::Android_Logger(std::string tag): tag(std::move(tag))
8 {
9 }
10
11 ////////////////////////////////////////////////////////////////////////////
12 void Android_Logger::log(const std::string &message) noexcept
13 {
14 __android_log_print(ANDROID_LOG_INFO, tag.c_str(), "%s", message.c_str());
15 }
16}
Android_Logger(std::string tag)
void log(const std::string &message) noexcept override