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