summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.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/backend.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/backend.h')
-rw-r--r--src/common/logging/backend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h
index da1c2f185..84a544ea4 100644
--- a/src/common/logging/backend.h
+++ b/src/common/logging/backend.h
@@ -11,7 +11,7 @@
11#include "common/logging/filter.h" 11#include "common/logging/filter.h"
12#include "common/logging/log.h" 12#include "common/logging/log.h"
13 13
14namespace Log { 14namespace Common::Log {
15 15
16class Filter; 16class Filter;
17 17
@@ -135,4 +135,4 @@ const char* GetLevelName(Level log_level);
135 * never get the message 135 * never get the message
136 */ 136 */
137void SetGlobalFilter(const Filter& filter); 137void SetGlobalFilter(const Filter& filter);
138} // namespace Log \ No newline at end of file 138} // namespace Common::Log \ No newline at end of file