From 7375e367b2ae615fc658fb2e688c5de8b09e35e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sivert=20Kr=C3=B8vel?= Date: Mon, 6 Mar 2023 12:09:54 +0100 Subject: [PATCH] McuSupport: Remove status message The status message notifying that the input.json used to generate the project tree in an MCU qmlproject is not interesting to most users, and it is shown several times if using modules. Removing it gets rid of some clutter in the General Messages output. QTCREATORBUG-28824 Change-Id: I8b97aeff7b872e52e260f035f7f48144a8caf167 Reviewed-by: Reviewed-by: Yasser Grimes Reviewed-by: Alessandro Portale --- src/plugins/mcusupport/mcusupportplugin.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/mcusupport/mcusupportplugin.cpp b/src/plugins/mcusupport/mcusupportplugin.cpp index 2c3dfdb28b0..f7622318517 100644 --- a/src/plugins/mcusupport/mcusupportplugin.cpp +++ b/src/plugins/mcusupport/mcusupportplugin.cpp @@ -76,8 +76,6 @@ void updateMCUProjectTree(ProjectExplorer::Project *p) const FilePath inputsJsonFile = projectBuildFolder / "CMakeFiles" / (targetName + ".dir") / "config/input.json"; - printMessage("found Input json file " + inputsJsonFile.absoluteFilePath().toString(), true); - if (!inputsJsonFile.exists()) return;