We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ff4161 commit 32159e9Copy full SHA for 32159e9
ellar/app/lifespan.py
@@ -53,7 +53,6 @@ async def run_all_shutdown_actions(self, app: "App") -> None:
53
@asynccontextmanager
54
async def lifespan(self, app: "App") -> t.AsyncIterator[t.Any]:
55
logger.debug("Executing Modules Startup Handlers")
56
- logger.debug("ELLAR LOGGER CONFIGURED")
57
58
async with create_task_group() as tg:
59
tg.start_soon(self.run_all_startup_actions, app)
@@ -66,3 +65,4 @@ async def lifespan(self, app: "App") -> t.AsyncIterator[t.Any]:
66
65
logger.debug("Executing Modules Shutdown Handlers")
67
68
tg.start_soon(self.run_all_shutdown_actions, app)
+ logger.info("Application shutdown successfully.")
0 commit comments