| 70 | } |
| 71 | |
| 72 | bool AsyncWaitProcessor::ProcessRecord(Record& record) |
| 73 | { |
| 74 | // Check if the logging processor started |
| 75 | if (!IsStarted()) |
| 76 | return true; |
| 77 | |
| 78 | // Enqueue the given logger record |
| 79 | return EnqueueRecord(record); |
| 80 | } |
| 81 | |
| 82 | bool AsyncWaitProcessor::EnqueueRecord(Record& record) |
| 83 | { |
nothing calls this directly
no outgoing calls
no test coverage detected