(&self, entry: LogEntry)
| 98 | } |
| 99 | |
| 100 | fn send(&self, entry: LogEntry) { |
| 101 | let _ = self.sender.send(WorkerMessage::Log(entry)); |
| 102 | } |
| 103 | |
| 104 | /// Signal the background thread to shut down gracefully. |
| 105 | fn shutdown(&self) { |
no outgoing calls
no test coverage detected