diff options
author | bunnei <bunneidev@gmail.com> | 2022-12-18 08:31:09 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:26 +0200 |
commit | 99296a15108f950c60c7864a374e3ef1f5909e76 (patch) | |
tree | 6189575f5e74f658d3181fdd2467bf894a5bf940 /src/common/logging/text_formatter.h | |
parent | common: host_memory: Implement for Android. (diff) | |
download | yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.gz yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.bz2 yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.lz yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.xz yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.tar.zst yuzu-99296a15108f950c60c7864a374e3ef1f5909e76.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/text_formatter.h | 2 |
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); 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 |