Merge pull request #37252 from vutny/suppress-init-grain-error

Set logging level to 'info' for message about init system detection
This commit is contained in:
Mike Place 2016-10-27 15:15:01 +09:00 committed by GitHub
commit d0ce3de50c

View file

@ -1250,8 +1250,8 @@ def os_data():
elif salt.utils.which('supervisord') in init_cmdline:
grains['init'] = 'supervisord'
else:
log.error(
'Could not determine init location from command line: ({0})'
log.info(
'Could not determine init system from command line: ({0})'
.format(' '.join(init_cmdline))
)