diff options
author | Lioncash <mathew1800@gmail.com> | 2021-04-15 02:19:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-04-15 05:10:58 +0200 |
commit | 64606aefcf2407513d3687a1f8d325653bde1f72 (patch) | |
tree | e6d171bdaf94d121809cf8f27a00f417bda39f06 /src/common/logging/text_formatter.h | |
parent | Merge pull request #6192 from lioncash/discard (diff) | |
download | yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.gz yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.bz2 yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.lz yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.xz yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.zst yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/text_formatter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h index b6d9e57c8..171e74cfe 100644 --- a/src/common/logging/text_formatter.h +++ b/src/common/logging/text_formatter.h @@ -7,7 +7,7 @@ #include <cstddef> #include <string> -namespace Log { +namespace Common::Log { struct Entry; @@ -17,4 +17,4 @@ 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); -} // namespace Log +} // namespace Common::Log |