summaryrefslogtreecommitdiff
path: root/lib/chef/mixin/create_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/mixin/create_path.rb')
-rw-r--r--lib/chef/mixin/create_path.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/mixin/create_path.rb b/lib/chef/mixin/create_path.rb
index 21a945d2ae..455110b1a2 100644
--- a/lib/chef/mixin/create_path.rb
+++ b/lib/chef/mixin/create_path.rb
@@ -61,7 +61,7 @@ class Chef
# File.directory?(create_path) <- false
# Dir.mkdir(create_path)
# Dir.mkdir(create_path) <- raises Errno::EEXIST
- Chef::Log.debug("Creating directory #{path}")
+ Chef::Log.trace("Creating directory #{path}")
Dir.mkdir(path)
rescue Errno::EEXIST
end