common: logging: Implement Android logcat backend.

This commit is contained in:
bunnei
2022-12-17 23:31:09 -08:00
parent afdee9abea
commit 99296a1510
3 changed files with 63 additions and 0 deletions

View File

@ -15,4 +15,6 @@ std::string FormatLogMessage(const Entry& entry);
void PrintMessage(const Entry& entry);
/// Prints the same message as `PrintMessage`, but colored according to the severity level.
void PrintColoredMessage(const Entry& entry);
/// Formats and prints a log entry to the android logcat.
void PrintMessageToLogcat(const Entry& entry);
} // namespace Common::Log