diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2018-06-23 18:34:44 -0700 |
---|---|---|
committer | Noah Kantrowitz <noah@coderanger.net> | 2018-06-23 18:34:44 -0700 |
commit | dce10ada511109e9b62093dc5101e1303a40f660 (patch) | |
tree | bc9bbae6b8d834b998e105cfef7f87c97467b750 | |
parent | bec29232c2b42609a4746f4df9141758af87287f (diff) | |
download | chef-dce10ada511109e9b62093dc5101e1303a40f660.tar.gz |
Demote this log line to trace because this is not generally something a user needs to worry about.
Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
-rw-r--r-- | chef-config/lib/chef-config/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb index ed8fab9ee4..bd47ab509e 100644 --- a/chef-config/lib/chef-config/config.rb +++ b/chef-config/lib/chef-config/config.rb @@ -286,7 +286,7 @@ module ChefConfig # the cache path. unless path_accessible?(primary_cache_path) || path_accessible?(primary_cache_root) secondary_cache_path = PathHelper.join(user_home, ".chef") - ChefConfig.logger.info("Unable to access cache at #{primary_cache_path}. Switching cache to #{secondary_cache_path}") + ChefConfig.logger.trace("Unable to access cache at #{primary_cache_path}. Switching cache to #{secondary_cache_path}") secondary_cache_path else primary_cache_path |