summaryrefslogtreecommitdiff
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorGravatar Lioncash2021-04-14 20:19:52 -0400
committerGravatar Lioncash2021-04-14 23:10:58 -0400
commit64606aefcf2407513d3687a1f8d325653bde1f72 (patch)
treee6d171bdaf94d121809cf8f27a00f417bda39f06 /src/common/logging/text_formatter.h
parentMerge pull request #6192 from lioncash/discard (diff)
downloadyuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.gz
yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.tar.xz
yuzu-64606aefcf2407513d3687a1f8d325653bde1f72.zip
common/log: Move Log namespace into the Common namespace
Forgot to move this over when I moved the rest of the source files with lacking namespaces over.
Diffstat (limited to 'src/common/logging/text_formatter.h')
-rw-r--r--src/common/logging/text_formatter.h4
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 @@
7#include <cstddef> 7#include <cstddef>
8#include <string> 8#include <string>
9 9
10namespace Log { 10namespace Common::Log {
11 11
12struct Entry; 12struct Entry;
13 13
@@ -17,4 +17,4 @@ std::string FormatLogMessage(const Entry& entry);
17void PrintMessage(const Entry& entry); 17void PrintMessage(const Entry& entry);
18/// Prints the same message as `PrintMessage`, but colored according to the severity level. 18/// Prints the same message as `PrintMessage`, but colored according to the severity level.
19void PrintColoredMessage(const Entry& entry); 19void PrintColoredMessage(const Entry& entry);
20} // namespace Log 20} // namespace Common::Log