Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GitLab
omnibus
Commits
8ec8594d
Commit
8ec8594d
authored
Sep 26, 2014
by
Seth Chisamore
Browse files
Log env vars with with their proper casing
parent
7e9f8934
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/omnibus/util.rb
lib/omnibus/util.rb
+1
-1
No files found.
lib/omnibus/util.rb
View file @
8ec8594d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment