common: logging: Implement Android logcat backend.

This commit is contained in:
bunnei
2022-12-17 23:31:09 -08:00
parent 699d6751d8
commit fa9b38c400
3 changed files with 63 additions and 0 deletions
+2
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