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; }