| 24 | } |
| 25 | |
| 26 | bool TLogFilter::CheckLoggingContext(TLog& log, const TLogRecordContext& context) { |
| 27 | return context.Priority <= log.FiltrationLevel(); |
| 28 | } |
| 29 | |
| 30 | TSimpleSharedPtr<TLogElement> TLogFilter::StartRecord(TLog& logger, const TLogRecordContext& context, TSimpleSharedPtr<TLogElement> earlier) { |
| 31 | if (earlier) |
nothing calls this directly
no test coverage detected