Skip to content

Commit

Permalink
Squelch warning for virtual grain
Browse files Browse the repository at this point in the history
saltstack#39504 fixed what was a legitimate
bug, but in turn this causes this warning to be logged hundreds of times
in the minion log on unprivileged containers.

This commit changes the log level for this message to debug.
  • Loading branch information
terminalmage committed Feb 26, 2017
1 parent 5770f28 commit a3c20e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/grains/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ def _virtual(osdata):
break
else:
if osdata['kernel'] not in skip_cmds:
log.warning(
log.debug(
'All tools for virtual hardware identification failed to '
'execute because they do not exist on the system running this '
'instance or the user does not have the necessary permissions '
Expand Down

0 comments on commit a3c20e7

Please sign in to comment.