diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-14 21:29:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 21:29:44 -0700 |
commit | 60511976bb721415180854a400571433f33e9abe (patch) | |
tree | dbe65815775e1e9f0179746ef04ce52d893cd667 /src/common/logging/backend.h | |
parent | de5bf640b7309450357074083a9ac397f251adbc (diff) | |
parent | 2a341c9969ceaa6620c89ccf102eacb8a31215e5 (diff) |
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.h | 4 |
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 @@ #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 |