From 040ebf81719b0c43af25f3336599f23ceb94c01b Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 24 Feb 2023 12:17:38 +0100 Subject: [PATCH] Debugger: Suppress a message clogging the log view Eats time and won't be handled soon. Change-Id: I777bef10397d0d67daf576862975c4d4f1184504 Reviewed-by: David Schulz --- src/plugins/debugger/watchhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 83ff13b71b8..f86bcb1c62e 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -2293,7 +2293,7 @@ void WatchHandler::notifyUpdateFinished() m_model->forAllItems([this](WatchItem *item) { if (item->wantsChildren && isExpandedIName(item->iname)) { - m_model->m_engine->showMessage(QString("ADJUSTING CHILD EXPECTATION FOR " + item->iname)); + // m_model->m_engine->showMessage(QString("ADJUSTING CHILD EXPECTATION FOR " + item->iname)); item->wantsChildren = false; } });