| 732 | } |
| 733 | |
| 734 | void DapSession::handleStreamConsole(const QString &text) |
| 735 | { |
| 736 | dap::OutputEvent outputEvent; |
| 737 | QString output = text; |
| 738 | outputEvent.category = "stdout"; |
| 739 | outputEvent.output = output.toStdString(); |
| 740 | d->session->send(outputEvent); |
| 741 | // do not output log here, may cause block. |
| 742 | } |
| 743 | |
| 744 | void DapSession::handleOutputTextEvent(const QStringList &textList) |
| 745 | { |