diff --git a/dbs/migration_requests.go b/dbs/migration_requests.go index a416eb21..f0905076 100644 --- a/dbs/migration_requests.go +++ b/dbs/migration_requests.go @@ -85,7 +85,7 @@ func (r *MigrationRequest) Insert(tx *sql.Tx) error { if err != nil { if strings.Contains(err.Error(), "unique") { // if we try to insert the same migration input we'll continue - log.Printf("warning: skip %+v since it is already inserted in another request, error %v", v, err) + log.Printf("warning: skip %+v since it is already inserted in another request, error %v", r, err) return nil } if utils.VERBOSE > 0 {