summaryrefslogtreecommitdiffstats
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-04 16:49:06 +0200
committerLioncash <mathew1800@gmail.com>2018-09-04 16:49:08 +0200
commit6ef84f1c4c6ca66ec28be210ef14913187af4424 (patch)
treedc16d7523a1785a0bd35f79cc53fdbdc6b6e7bcf /src/common/logging/text_formatter.h
parentcommon/logging/filter: Replace C-style case with C++ static_cast (diff)
downloadyuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.gz
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.bz2
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.lz
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.xz
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.zst
yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/text_formatter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h
index 9609cec7c..b6d9e57c8 100644
--- a/src/common/logging/text_formatter.h
+++ b/src/common/logging/text_formatter.h
@@ -15,6 +15,6 @@ struct Entry;
std::string FormatLogMessage(const Entry& entry);
/// Formats and prints a log entry to stderr.
void PrintMessage(const Entry& entry);
-/// Prints the same message as `PrintMessage`, but colored acoording to the severity level.
+/// Prints the same message as `PrintMessage`, but colored according to the severity level.
void PrintColoredMessage(const Entry& entry);
} // namespace Log