From 6d8e1fed33b4dfbbb39cec0191959162a792a855 Mon Sep 17 00:00:00 2001 From: jakozian Date: Tue, 28 Apr 2026 09:09:26 +0200 Subject: [PATCH 1/2] #1688: Remove unnecessary log messages --- .../java/com/devonfw/tools/ide/tool/GlobalToolCommandlet.java | 2 -- cli/src/main/java/com/devonfw/tools/ide/tool/docker/Docker.java | 2 -- 2 files changed, 4 deletions(-) diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/GlobalToolCommandlet.java b/cli/src/main/java/com/devonfw/tools/ide/tool/GlobalToolCommandlet.java index 95c520a3b6..9cfffa4379 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/GlobalToolCommandlet.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/GlobalToolCommandlet.java @@ -190,14 +190,12 @@ protected List getInstallPackageManagerCommands() { @Override public VersionIdentifier getInstalledVersion() { //TODO: handle "get-version " - LOG.error("Couldn't get installed version of " + this.getName()); return null; } @Override public String getInstalledEdition() { //TODO: handle "get-edition " - LOG.error("Couldn't get installed edition of " + this.getName()); return null; } diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/docker/Docker.java b/cli/src/main/java/com/devonfw/tools/ide/tool/docker/Docker.java index 01b3881c82..4533c2fe99 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/docker/Docker.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/docker/Docker.java @@ -100,7 +100,6 @@ protected List getInstallPackageManagerCommands() { public VersionIdentifier getInstalledVersion() { if (!isDockerInstalled()) { - LOG.error("Couldn't get installed version of " + this.getName()); return null; } @@ -148,7 +147,6 @@ private VersionIdentifier getRancherDesktopClientVersion() { public String getInstalledEdition() { if (!isDockerInstalled()) { - LOG.error("Couldn't get installed edition of {}", this.getName()); return null; } From a1f92f1b1194714df103d3737d7fe2d3e6956c19 Mon Sep 17 00:00:00 2001 From: jakozian Date: Tue, 28 Apr 2026 09:12:42 +0200 Subject: [PATCH 2/2] #1688: Add to CHANGELOG --- CHANGELOG.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 8094e25c47..af837488a4 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,6 +16,7 @@ Release with new features and bugfixes: * https://github.com/devonfw/IDEasy/issues/1724[#1724]: Add gui commandlet * https://github.com/devonfw/IDEasy/issues/1853[#1853]: Add ARM releases for VSCode on Mac * https://github.com/devonfw/IDEasy/issues/1723[#1723]: Add commandlet for GitHub Copilot CLI +* https://github.com/devonfw/IDEasy/issues/1688[#1688]: Remove unnecessary message in the CLI when installing a new tool The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/44?closed=1[milestone 2026.05.001].