summaryrefslogtreecommitdiff
path: root/lib/chef/application.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/application.rb')
-rw-r--r--lib/chef/application.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/chef/application.rb b/lib/chef/application.rb
index 9df8de156a..81637eabb8 100644
--- a/lib/chef/application.rb
+++ b/lib/chef/application.rb
@@ -205,11 +205,7 @@ class Chef
# Based on config and whether or not STDOUT is a tty, should we setup a
# secondary logger for stdout?
def want_additional_logger?
- ( !log_location_default? ) && STDOUT.tty? && !Chef::Config[:daemonize]
- end
-
- def log_location_default?
- Chef::Config.configurables[:log_location].instance_variable_get(:@default_value).inspect == Chef::Config[:log_location].inspect
+ Chef::Config.is_default?(:log_location) && Chef::Config[:log_location].tty? && !Chef::Config[:daemonize]
end
def configure_stdout_logger