Removed overly verbose debug printing from db migration

This commit is contained in:
Imbus 2024-03-08 07:48:25 +01:00
parent 12536d5e89
commit 944f9b6ccc

View file

@ -2,7 +2,6 @@ package database
import (
"embed"
"log"
"os"
"path/filepath"
@ -127,7 +126,6 @@ func (d *Db) Migrate(dirname string) error {
if err != nil {
return err
}
log.Println("Executed SQL file:", file.Name())
}
if tr.Commit() != nil {