mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-03-16 12:25:45 +01:00
JobQueue: use class name for the logger name
This commit is contained in:
parent
02af1ea803
commit
f65b6911ea
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class JobQueue(object):
|
|||
def __init__(self, bot):
|
||||
self.queue = PriorityQueue()
|
||||
self.bot = bot
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self.logger = logging.getLogger(self.__class__.__name__)
|
||||
self.__lock = Lock()
|
||||
self.__tick = Event()
|
||||
self._next_peek = None
|
||||
|
|
Loading…
Add table
Reference in a new issue