Skip to content

Commit 9adef19

Browse files
committed
Initialize media module with a log message
Added a `fmt.Println` statement to indicate that the media module has been initialized. This provides immediate feedback during initialization for easier debugging and tracking.
1 parent 7ae1a37 commit 9adef19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/application/application.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func (a *App) Run() *App {
7777

7878
for _, app := range a.apps {
7979
if a.debug {
80-
log.Infof("Registering application: %s %s.Router()", app.Name(), reflect.TypeOf(app).PkgPath())
80+
log.Infof("Registering application: %s %s.Register()", app.Name(), reflect.TypeOf(app).PkgPath())
8181
}
8282
if err := app.Register(); err != nil {
8383
log.Fatalf("Can't start application Register() %s: %v", app.Name(), err)

0 commit comments

Comments
 (0)