Delete more debug logs

This commit is contained in:
2024-12-19 22:26:29 +01:00
parent b065938211
commit cf2e1809a4
7 changed files with 15 additions and 43 deletions

View File

@@ -122,7 +122,6 @@ func Init(dbPath string, secretsService secrets.Service) (Database, error) {
if err := db.Ping(); err != nil {
return nil, fmt.Errorf("failed to ping database: %w", err)
}
log.Debug("database ping successful")
// Enable foreign keys for this connection
if _, err := db.Exec("PRAGMA foreign_keys = ON"); err != nil {