Skip to content

Commit 32159e9

Browse files
committed
log clean up: Removed unnecessary logs
1 parent 1ff4161 commit 32159e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ellar/app/lifespan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ async def run_all_shutdown_actions(self, app: "App") -> None:
5353
@asynccontextmanager
5454
async def lifespan(self, app: "App") -> t.AsyncIterator[t.Any]:
5555
logger.debug("Executing Modules Startup Handlers")
56-
logger.debug("ELLAR LOGGER CONFIGURED")
5756

5857
async with create_task_group() as tg:
5958
tg.start_soon(self.run_all_startup_actions, app)
@@ -66,3 +65,4 @@ async def lifespan(self, app: "App") -> t.AsyncIterator[t.Any]:
6665
logger.debug("Executing Modules Shutdown Handlers")
6766
async with create_task_group() as tg:
6867
tg.start_soon(self.run_all_shutdown_actions, app)
68+
logger.info("Application shutdown successfully.")

0 commit comments

Comments
 (0)