FreshPixels commited on
Commit
298626c
·
verified ·
1 Parent(s): 1120b0a

Update bot.py

Browse files
Files changed (1) hide show
  1. bot.py +5 -1
bot.py CHANGED
@@ -204,8 +204,12 @@ async def debug_on_startup(app: web.Application) -> None:
204
  await asyncio.sleep(5)
205
 
206
  me = await bot.get_me()
207
- logger.info("🤖 BOT = @%s (%s)", me.username, me.id)
208
 
 
 
 
 
 
209
  def main() -> None:
210
  setup_logging()
211
  logger = logging.getLogger(__name__)
 
204
  await asyncio.sleep(5)
205
 
206
  me = await bot.get_me()
 
207
 
208
+ logger.info(
209
+ "🤖 RUNNING BOT: @%s | ID=%s",
210
+ me.username,
211
+ me.id
212
+ )
213
  def main() -> None:
214
  setup_logging()
215
  logger = logging.getLogger(__name__)