MCPcopy Create free account
hub / github.com/chronoxor/CppLogging / ProcessRecord

Method ProcessRecord

source/logging/processors/sync_processor.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace CppLogging {
12
13bool 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
21void SyncProcessor::Flush()
22{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected