summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.h
diff options
context:
space:
mode:
authorGravatar bunnei2021-04-14 21:29:44 -0700
committerGravatar GitHub2021-04-14 21:29:44 -0700
commit60511976bb721415180854a400571433f33e9abe (patch)
treedbe65815775e1e9f0179746ef04ce52d893cd667 /src/common/logging/backend.h
parentMerge pull request #6196 from bunnei/asserts-setting (diff)
parentlog/backend: Correct order of const in copy constructor (diff)
downloadyuzu-60511976bb721415180854a400571433f33e9abe.tar.gz
yuzu-60511976bb721415180854a400571433f33e9abe.tar.xz
yuzu-60511976bb721415180854a400571433f33e9abe.zip
Merge pull request #6199 from lioncash/log-ns
common/log: Move Log namespace into the Common namespace
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