Improved logging to app end
This commit is contained in:
parent
27363522d3
commit
17c2acd77c
@ -52,7 +52,7 @@ class Application(DiscordBotApplicationABC):
|
|||||||
self._api.join()
|
self._api.join()
|
||||||
return
|
return
|
||||||
|
|
||||||
self._logger.trace(__name__, f"Try to start {DiscordBotService.__name__}")
|
self._logger.info(__name__, f"Try to start {DiscordBotService.__name__}")
|
||||||
await self._bot.start_async()
|
await self._bot.start_async()
|
||||||
await self._bot.stop_async()
|
await self._bot.stop_async()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@ -64,9 +64,9 @@ class Application(DiscordBotApplicationABC):
|
|||||||
|
|
||||||
self._is_stopping = True
|
self._is_stopping = True
|
||||||
try:
|
try:
|
||||||
self._logger.trace(__name__, f"Try to stop {DiscordBotService.__name__}")
|
self._logger.info(__name__, f"Try to stop {DiscordBotService.__name__}")
|
||||||
await self._bot.close()
|
await self._bot.close()
|
||||||
self._logger.trace(__name__, f"Stopped {DiscordBotService.__name__}")
|
self._logger.info(__name__, f"Stopped {DiscordBotService.__name__}")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self._logger.error(__name__, "stop failed", e)
|
self._logger.error(__name__, "stop failed", e)
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ class Program:
|
|||||||
)
|
)
|
||||||
self.app: Application = await app_builder.build_async()
|
self.app: Application = await app_builder.build_async()
|
||||||
await self.app.run_async()
|
await self.app.run_async()
|
||||||
|
Console.write_line("Finished app.run_async")
|
||||||
|
|
||||||
async def stop(self):
|
async def stop(self):
|
||||||
if self.app is None:
|
if self.app is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user