summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-02-02 10:11:17 -0800
committerGitHub <noreply@github.com>2021-02-02 10:11:17 -0800
commit289774489c98390aefa773d01a87418948adaf25 (patch)
treefecb83819a1d6ba095e2171595034dfcbd4412ec
parent656fca797478032e87b747cfe5a6c303d727b1f7 (diff)
parent64f46f8f443f9de880763b7d004bc5835c3b7891 (diff)
downloadchef-289774489c98390aefa773d01a87418948adaf25.tar.gz
Merge pull request #10965 from chef/lcg/drop-debug-messages-down-to-debug
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/compliance/runner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/compliance/runner.rb b/lib/chef/compliance/runner.rb
index 8ab80e11ff..871d86ea23 100644
--- a/lib/chef/compliance/runner.rb
+++ b/lib/chef/compliance/runner.rb
@@ -20,8 +20,8 @@ class Chef
# renamed from Chef Visibility in 2017, so should capture all modern versions of the audit cookbook.
audit_cookbook_present = defined?(::Reporter::ChefAutomate)
- logger.info("#{self.class}##{__method__}: #{Inspec::Dist::PRODUCT_NAME} profiles? #{inspec_profiles.any?}")
- logger.info("#{self.class}##{__method__}: audit cookbook? #{audit_cookbook_present}")
+ logger.debug("#{self.class}##{__method__}: #{Inspec::Dist::PRODUCT_NAME} profiles? #{inspec_profiles.any?}")
+ logger.debug("#{self.class}##{__method__}: audit cookbook? #{audit_cookbook_present}")
inspec_profiles.any? && !audit_cookbook_present
end