diff options
author | Lioncash <mathew1800@gmail.com> | 2021-04-14 20:19:52 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-04-14 23:10:58 -0400 |
commit | 64606aefcf2407513d3687a1f8d325653bde1f72 (patch) | |
tree | e6d171bdaf94d121809cf8f27a00f417bda39f06 /src/common/logging/backend.h | |
parent | 8e7734bf40a6d6672a511aefdb21898c07f59039 (diff) |
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index da1c2f185a..84a544ea44 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h @@ -11,7 +11,7 @@ #include "common/logging/filter.h" #include "common/logging/log.h" -namespace Log { +namespace Common::Log { class Filter; @@ -135,4 +135,4 @@ const char* GetLevelName(Level log_level); * never get the message */ void SetGlobalFilter(const Filter& filter); -} // namespace Log
\ No newline at end of file +} // namespace Common::Log
\ No newline at end of file |