We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d9077 commit 92bc59eCopy full SHA for 92bc59e
pyrogram/dispatcher.py
@@ -119,7 +119,7 @@ async def start(self):
119
self.loop.create_task(self.handler_worker(self.locks_list[-1]))
120
)
121
122
- logging.info(f"Started {self.client.workers} HandlerTasks")
+ log.info(f"Started {self.client.workers} HandlerTasks")
123
124
async def stop(self):
125
if not self.client.no_updates:
@@ -132,7 +132,7 @@ async def stop(self):
132
self.handler_worker_tasks.clear()
133
self.groups.clear()
134
135
- logging.info(f"Stopped {self.client.workers} HandlerTasks")
+ log.info(f"Stopped {self.client.workers} HandlerTasks")
136
137
def add_handler(self, handler, group: int):
138
async def fn():
0 commit comments