Rotate log when process starts

This commit is contained in:
stev5232 2013-05-01 12:39:43 -04:00
parent 11a81b679a
commit 6a430380f0
2 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,7 @@ handler = logging.handlers.TimedRotatingFileHandler('verifier.log',
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
handler.setFormatter(formatter)
LOG.addHandler(handler)
LOG.handlers[0].doRollover()
def _list_exists(ending_max=None, status=None):

View File

@ -44,6 +44,7 @@ handler = logging.handlers.TimedRotatingFileHandler('worker.log',
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
handler.setFormatter(formatter)
LOG.addHandler(handler)
LOG.handlers[0].doRollover()
class NovaConsumer(kombu.mixins.ConsumerMixin):