From 97b97825edf69b9a778e3eaefb11de1aee34d21c Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 24 Feb 2023 09:49:57 +0100 Subject: [PATCH] Debugger: Also log time stamp when handling output is finished This helps to put the blame properly on either side of the communication. Change-Id: Id83de2bce1984f63427f655dce854ebb008a1a61 Reviewed-by: David Schulz Reviewed-by: --- src/plugins/debugger/gdb/gdbengine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index ff3c9b88446..1894dd3f4e5 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -410,6 +410,9 @@ void GdbEngine::handleResponse(const QString &buff) break; } } + + if (debuggerSettings()->logTimeStamps.value()) + showMessage(QString("Output handled")); } void GdbEngine::handleAsyncOutput(const QStringView asyncClass, const GdbMi &result)