summaryrefslogtreecommitdiffstats
path: root/src/common/logging/filter.h
diff options
context:
space:
mode:
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 a2b4eca43..db526fead 100644
--- a/src/common/logging/filter.h
+++ b/src/common/logging/filter.h
@@ -42,7 +42,8 @@ public:
* - `Service.FS:Trace` -- Sets the level of the Service.FS class to Trace.
*/
void ParseFilterString(const std::string& filter_str);
- bool ParseFilterRule(const std::string::const_iterator start, const std::string::const_iterator end);
+ bool ParseFilterRule(const std::string::const_iterator start,
+ const std::string::const_iterator end);
/// Matches class/level combination against the filter, returning true if it passed.
bool CheckMessage(Class log_class, Level level) const;
@@ -50,5 +51,4 @@ public:
private:
std::array<Level, (size_t)Class::Count> class_levels;
};
-
}