Respect dynamic log setting for console, downgrade exit log

This commit is contained in:
Alan Rominger
2021-11-30 14:25:37 -05:00
parent b721a4b361
commit d6679a1e9b
2 changed files with 7 additions and 2 deletions

View File

@@ -188,7 +188,7 @@ class BaseWorker(object):
if 'uuid' in body:
uuid = body['uuid']
finished.put(uuid)
logger.warn('worker exiting gracefully pid:{}'.format(os.getpid()))
logger.debug('worker exiting gracefully pid:{}'.format(os.getpid()))
def perform_work(self, body):
raise NotImplementedError()