Loading...
Searching...
No Matches
errPassFilter.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
27 class _nout errPassFilter: public filterable {
29
30 public:
31 nbool filt(errLv::level lv, const std::string& tag) const override;
32 };
33}
Filter that passes through error-level log messages only.
Definition errPassFilter.hpp:27
nbool filt(errLv::level lv, const std::string &tag) const override
Determines whether a log entry should be filtered out.
Interface for objects that can filter log messages.
Definition filterable.hpp:17