CppLogging 1.0.5.0
C++ Logging Library
Loading...
Searching...
No Matches
message_filter.cpp
Go to the documentation of this file.
1
10
11namespace CppLogging {
12
14{
15 bool result = std::regex_match(record.message, _pattern);
16 return _positive ? result : !result;
17}
18
19} // namespace CppLogging
bool FilterRecord(Record &record) override
Filter the given logging record.
Logging record.
Definition record.h:37
std::string message
Message of the logging record.
Definition record.h:48
Message filter definition.
C++ Logging project definitions.
Definition appender.h:15