summaryrefslogtreecommitdiff
path: root/lib/chef/null_logger.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/null_logger.rb')
-rw-r--r--lib/chef/null_logger.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/chef/null_logger.rb b/lib/chef/null_logger.rb
index 927cfc0c08..5781d8e055 100644
--- a/lib/chef/null_logger.rb
+++ b/lib/chef/null_logger.rb
@@ -42,6 +42,9 @@ class Chef
def debug(message, &block)
end
+ def trace(message, &block)
+ end
+
def add(severity, message = nil, progname = nil)
end
@@ -68,5 +71,9 @@ class Chef
false
end
+ def trace?
+ false
+ end
+
end
end