summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-08-13 20:54:57 -0700
committerGitHub <noreply@github.com>2021-08-13 20:54:57 -0700
commit15541a8a549db0117d52faefd31fec6d76e822ad (patch)
tree6b9006a4d740f54478c858f3699ac310e423c5d9
parent3e2895b5991a4c3d43c96c0f7b46c1794daa9c80 (diff)
parent08098c898813363597a230d3c2e4708d86b36422 (diff)
downloadchef-15541a8a549db0117d52faefd31fec6d76e822ad.tar.gz
Merge pull request #11923 from chef/lcg/yell-louder
Make the stacktrace.out message more visible
-rw-r--r--lib/chef/application.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/application.rb b/lib/chef/application.rb
index 356c4a4a30..69ce23518b 100644
--- a/lib/chef/application.rb
+++ b/lib/chef/application.rb
@@ -377,7 +377,9 @@ class Chef
Chef::FileCache.store("#{ChefUtils::Dist::Infra::SHORT}-stacktrace.out", chef_stacktrace_out)
logger.fatal("Stacktrace dumped to #{Chef::FileCache.load("#{ChefUtils::Dist::Infra::SHORT}-stacktrace.out", false)}")
- logger.fatal("Please provide the contents of the stacktrace.out file if you file a bug report")
+ logger.fatal("---------------------------------------------------------------------------------------")
+ logger.fatal("PLEASE PROVIDE THE CONTENTS OF THE stacktrace.out FILE (above) IF YOU FILE A BUG REPORT")
+ logger.fatal("---------------------------------------------------------------------------------------")
if Chef::Config[:always_dump_stacktrace]
logger.fatal(message)
else