separate loggers for currency/regen threads
This commit is contained in:
parent
01717db5df
commit
1ee0dd33cd
1 changed files with 2 additions and 0 deletions
|
|
@ -343,6 +343,7 @@ class RepoManager(object):
|
|||
def currencyChecker(self, session):
|
||||
"""Continually checks repos for currency. Runs as a separate thread"""
|
||||
self.session = session
|
||||
self.logger = logging.getLogger("koji.repo.currency")
|
||||
self.logger.info('currencyChecker starting')
|
||||
try:
|
||||
while True:
|
||||
|
|
@ -357,6 +358,7 @@ class RepoManager(object):
|
|||
def regenLoop(self, session):
|
||||
"""Triggers regens as needed/possible. Runs in a separate thread"""
|
||||
self.session = session
|
||||
self.logger = logging.getLogger("koji.repo.regen")
|
||||
self.logger.info('regenLoop starting')
|
||||
try:
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue