aboutsummaryrefslogtreecommitdiff
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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/logging/filter.h b/src/common/logging/filter.h
index a2b4eca43..b51df61de 100644
--- a/src/common/logging/filter.h
+++ b/src/common/logging/filter.h
@@ -7,7 +7,6 @@
#include <array>
#include <cstddef>
#include <string>
-
#include "common/logging/log.h"
namespace Log {
@@ -42,7 +41,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 +50,4 @@ public:
private:
std::array<Level, (size_t)Class::Count> class_levels;
};
-
}