| 719 | } |
| 720 | |
| 721 | void DapSession::handleLibraryUnloaded(const dap::ModuleEvent &moduleEvent) |
| 722 | { |
| 723 | dap::OutputEvent outputEvent; |
| 724 | outputEvent.category = "console"; |
| 725 | QString targetName = QString::fromStdString(moduleEvent.module.name); |
| 726 | outputEvent.output = QString("Unloaded %1. Symbols loaded.\n") |
| 727 | .arg(targetName).toStdString(); |
| 728 | d->session->send(outputEvent); |
| 729 | Log("--> Server sent output event to client\n") |
| 730 | d->session->send(moduleEvent); |
| 731 | Log("--> Server sent module event to client\n") |
| 732 | } |
| 733 | |
| 734 | void DapSession::handleStreamConsole(const QString &text) |
| 735 | { |