summaryrefslogtreecommitdiff
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorGravatar bunnei2022-12-17 23:31:09 -0800
committerGravatar bunnei2023-06-03 00:05:26 -0700
commit99296a15108f950c60c7864a374e3ef1f5909e76 (patch)
tree6189575f5e74f658d3181fdd2467bf894a5bf940 /src/common/logging/text_formatter.h
parentcommon: host_memory: Implement for Android. (diff)
downloadyuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.gz
yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.xz
yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.zip
common: logging: Implement Android logcat backend.
Diffstat (limited to '')
-rw-r--r--src/common/logging/text_formatter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h
index 0d0ec4370..68417420b 100644
--- a/src/common/logging/text_formatter.h
+++ b/src/common/logging/text_formatter.h
@@ -15,4 +15,6 @@ std::string FormatLogMessage(const Entry& entry);
15void PrintMessage(const Entry& entry); 15void PrintMessage(const Entry& entry);
16/// Prints the same message as `PrintMessage`, but colored according to the severity level. 16/// Prints the same message as `PrintMessage`, but colored according to the severity level.
17void PrintColoredMessage(const Entry& entry); 17void PrintColoredMessage(const Entry& entry);
18/// Formats and prints a log entry to the android logcat.
19void PrintMessageToLogcat(const Entry& entry);
18} // namespace Common::Log 20} // namespace Common::Log