mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #34142 from isbm/isbm-getid-loglevel-shift
Move log message from INFO to DEBUG.
This commit is contained in:
commit
65fba5b4d7
1 changed files with 1 additions and 1 deletions
|
@ -2810,7 +2810,7 @@ def get_id(opts, cache_minion_id=False):
|
|||
|
||||
newid = salt.utils.network.generate_minion_id()
|
||||
if '__role' in opts and opts.get('__role') == 'minion':
|
||||
log.info('Found minion id from generate_minion_id(): {0}'.format(newid))
|
||||
log.debug('Found minion id from generate_minion_id(): {0}'.format(newid))
|
||||
if cache_minion_id and opts.get('minion_id_caching', True):
|
||||
_cache_id(newid, id_cache)
|
||||
is_ipv4 = newid.count('.') == 3 and not any(c.isalpha() for c in newid)
|
||||
|
|
Loading…
Add table
Reference in a new issue