more debugging
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Wolfgang Hottgenroth 2024-12-13 10:02:32 +01:00
parent 166c414af1
commit a1b98d3438
Signed by: wn
GPG Key ID: 18FDFA577A8871AD
2 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,7 @@ func New(id string, config config.HandlerConfigT) handler.Handler {
t.Id = id t.Id = id
t.ready = true t.ready = true
t.dbh = database.NewDatabaseHandle() t.dbh = database.NewDatabaseHandle()
log.Printf("Handler SVEJ %d initialized", id)
return t return t
} }

View File

@ -86,6 +86,7 @@ func New(id string, config config.HandlerConfigT) handler.Handler {
} }
t.Id = id t.Id = id
t.dbh = database.NewDatabaseHandle() t.dbh = database.NewDatabaseHandle()
log.Printf("Handler TTN %d initialized", id)
return t return t
} }