aboutsummaryrefslogtreecommitdiff
path: root/src/common/logging/filter.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-14 21:29:44 -0700
committerGitHub <noreply@github.com>2021-04-14 21:29:44 -0700
commit60511976bb721415180854a400571433f33e9abe (patch)
treedbe65815775e1e9f0179746ef04ce52d893cd667 /src/common/logging/filter.h
parentde5bf640b7309450357074083a9ac397f251adbc (diff)
parent2a341c9969ceaa6620c89ccf102eacb8a31215e5 (diff)
Merge pull request #6199 from lioncash/log-ns
common/log: Move Log namespace into the Common namespace
Diffstat (limited to 'src/common/logging/filter.h')
-rw-r--r--src/common/logging/filter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/filter.h b/src/common/logging/filter.h
index 773df6f2c..f5673a9f6 100644
--- a/src/common/logging/filter.h
+++ b/src/common/logging/filter.h
@@ -9,7 +9,7 @@
#include <string_view>
#include "common/logging/log.h"
-namespace Log {
+namespace Common::Log {
/**
* Implements a log message filter which allows different log classes to have different minimum
@@ -51,4 +51,4 @@ public:
private:
std::array<Level, static_cast<std::size_t>(Class::Count)> class_levels;
};
-} // namespace Log
+} // namespace Common::Log