| 309 | } |
| 310 | |
| 311 | void DebugMessageHandler::SendDebugOutput(char const * message) |
| 312 | { |
| 313 | BackendToDebugger msg; |
| 314 | auto debugMsg = msg.mutable_debugoutput(); |
| 315 | debugMsg->set_message(message); |
| 316 | Send(msg); |
| 317 | |
| 318 | if (IsConnected()) { |
| 319 | DEBUG(" <-- BkDebugOutput(): \"%s\"", message); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | void DebugMessageHandler::SetDebugger(Debugger * debugger) |
| 324 | { |