File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ async def initialize_app(self, name):
155
155
156
156
# Call its initialize function
157
157
try :
158
+ self .logger .info (f"Calling initialize() for { name } " )
158
159
if asyncio .iscoroutinefunction (init ):
159
160
await init ()
160
161
else :
@@ -295,7 +296,7 @@ def get_app_debug_level(self, app):
295
296
async def init_object (self , name ):
296
297
app_args = self .app_config [name ]
297
298
self .logger .info (
298
- "Initializing app %s using class %s from module %s" ,
299
+ "Loading app %s using class %s from module %s" ,
299
300
name ,
300
301
app_args ["class" ],
301
302
app_args ["module" ],
@@ -355,7 +356,7 @@ async def init_object(self, name):
355
356
356
357
else :
357
358
self .logger .warning (
358
- "Unable to find module module %s - '%s' is not initialized " ,
359
+ "Unable to find module module %s - '%s' is not loaded " ,
359
360
app_args ["module" ],
360
361
name ,
361
362
)
You can’t perform that action at this time.
0 commit comments