Merge pull request #53020 from Ch3LL/ssh_tops

Change ssh tops log message to debug
This commit is contained in:
Daniel Wozniak 2019-05-14 09:56:41 -07:00 committed by GitHub
commit c56fbb0f94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -430,7 +430,7 @@ def gen_thin(cachedir, extra_mods='', overwrite=False, so_mods='',
log.error(tops_failure_msg, 'parsing', python3_bin)
log.exception(err)
else:
log.error(tops_failure_msg, 'collecting', python3_bin)
log.debug(tops_failure_msg, 'collecting', python3_bin)
log.debug(stderr)
# Collect tops, alternative to 3.x version
@ -448,7 +448,7 @@ def gen_thin(cachedir, extra_mods='', overwrite=False, so_mods='',
log.error(tops_failure_msg, 'parsing', python2_bin)
log.exception(err)
else:
log.error(tops_failure_msg, 'collecting', python2_bin)
log.debug(tops_failure_msg, 'collecting', python2_bin)
log.debug(stderr)
with salt.utils.files.fopen(pymap_cfg, 'wb') as fp_: