Skip to content
Snippets Groups Projects
Commit 8ec8594d authored by Seth Chisamore's avatar Seth Chisamore
Browse files

Log env vars with with their proper casing

parent 7e9f8934
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -69,7 +69,7 @@ module Omnibus
unless options[:environment].empty?
log.public_send(log_level, log_key) { 'Environment:' }
options[:environment].sort.each do |key, value|
log.public_send(log_level, log_key) { " #{key.to_s.upcase}=#{value.inspect}" }
log.public_send(log_level, log_key) { " #{key}=#{value.inspect}" }
end
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment