From 10d13ac293e911612c878421848e38a809f302db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Smolarek?= <34063647+Razz4780@users.noreply.github.com> Date: Thu, 17 Oct 2024 10:31:02 +0200 Subject: [PATCH] Fix debug warning (#2856) * Removed debug warning * Changelog entry --- changelog.d/+removed-debug-warning.fixed.md | 1 + mirrord/cli/src/main.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 changelog.d/+removed-debug-warning.fixed.md diff --git a/changelog.d/+removed-debug-warning.fixed.md b/changelog.d/+removed-debug-warning.fixed.md new file mode 100644 index 00000000000..59b07a41827 --- /dev/null +++ b/changelog.d/+removed-debug-warning.fixed.md @@ -0,0 +1 @@ +Removed unnecessary debug warning from mirrord CLI progress. diff --git a/mirrord/cli/src/main.rs b/mirrord/cli/src/main.rs index 58f9c51ffaf..de645b1f824 100644 --- a/mirrord/cli/src/main.rs +++ b/mirrord/cli/src/main.rs @@ -335,7 +335,6 @@ fn print_config
( async fn exec(args: &ExecArgs, watch: drain::Watch) -> Result<()> { let progress = ProgressTracker::from_env("mirrord exec"); - progress.warning(&format!("{:?}", args.params.accept_invalid_certificates)); if !args.params.disable_version_check { prompt_outdated_version(&progress).await; }