| 308 | |
| 309 | |
| 310 | void PrintStopReason(DbgRef<DebuggerController> controller, DebugStopReason reason) |
| 311 | { |
| 312 | if (reason == ProcessExited) |
| 313 | { |
| 314 | Log::print<Log::Info>("Exited with code: {}\n", controller->GetExitCode()); |
| 315 | return; |
| 316 | } |
| 317 | Log::print<Log::Info>("Stopped: {}\n", controller->GetDebugStopReasonString(reason)); |
| 318 | } |
| 319 | |
| 320 | |
| 321 | int main(int argc, const char* argv[]) |
no test coverage detected