mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Change noise log to debug
This commit is contained in:
parent
0660b1a337
commit
659c805218
1 changed files with 2 additions and 2 deletions
|
@ -857,7 +857,7 @@ class SubprocessList(object):
|
|||
def add(self, proc):
|
||||
with self.lock:
|
||||
self.processes.append(proc)
|
||||
log.warning('Subprocess %s added', proc.name)
|
||||
log.debug('Subprocess %s added', proc.name)
|
||||
|
||||
def cleanup(self):
|
||||
with self.lock:
|
||||
|
@ -866,4 +866,4 @@ class SubprocessList(object):
|
|||
continue
|
||||
proc.join()
|
||||
self.processes.remove(proc)
|
||||
log.warning('Subprocess %s cleaned up', proc.name)
|
||||
log.debug('Subprocess %s cleaned up', proc.name)
|
||||
|
|
Loading…
Add table
Reference in a new issue