Use vlogging.

master
voussoir 2021-11-20 18:49:31 -08:00
parent 8317e7c7b7
commit edeff079f7
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 2 additions and 2 deletions

View File

@ -33,15 +33,15 @@ Here are some examples of threadpool in use:
>>> pool.add_many(kwargss)
>>> pool.join()
'''
import logging
import queue
import threading
import traceback
from voussoirkit import lazychain
from voussoirkit import sentinel
from voussoirkit import vlogging
log = logging.getLogger('threadpool')
log = vlogging.get_logger(__name__, 'threadpool')
PENDING = sentinel.Sentinel('PENDING')
RUNNING = sentinel.Sentinel('RUNNING')