| 11 | namespace CppLogging { |
| 12 | |
| 13 | bool SyncProcessor::ProcessRecord(Record& record) |
| 14 | { |
| 15 | CppCommon::Locker<CppCommon::CriticalSection> locker(_lock); |
| 16 | |
| 17 | // Process the given logging record under the critical section lock |
| 18 | return Processor::ProcessRecord(record); |
| 19 | } |
| 20 | |
| 21 | void SyncProcessor::Flush() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected