From b30e0466d4880e8ec9588c1b9f2e05a4177cd661 Mon Sep 17 00:00:00 2001 From: Yoriyasu Yano <430092+yorinasub17@users.noreply.github.com> Date: Tue, 2 Feb 2021 09:35:09 -0600 Subject: [PATCH] Update cli/cli_app.go Co-authored-by: Yevgeniy Brikman --- cli/cli_app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli_app.go b/cli/cli_app.go index b0eedcc005..e03cb3b629 100644 --- a/cli/cli_app.go +++ b/cli/cli_app.go @@ -293,7 +293,7 @@ func checkDeprecated(command string, terragruntOptions *options.TerragruntOption deprecationHandler, deprecated := deprecatedCommands[command] if deprecated { newOptions, newCommand, newCommandFriendly := deprecationHandler(terragruntOptions) - terragruntOptions.Logger.Printf("%s is deprecated; running %s instead.\n", command, newCommandFriendly) + terragruntOptions.Logger.Printf("'%s' is deprecated. Running '%s' instead. Please update your workflows to use '%s', as '%s' may be removed in the future!\n", command, newCommandFriendly, newCommandFriendly, command) return newOptions, newCommand } return terragruntOptions, command