good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 179acf93 authored by b00ris's avatar b00ris Committed by GitHub
Browse files

fix log (#386)

parent b6717401
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ func (m *Migrator) Apply(db ethdb.Database, history, receipts, txIndex, preImage
m.Migrations = m.Migrations[i+1:]
for _, v := range m.Migrations {
log.Warn("Apply migration", v.Name)
log.Warn("Apply migration", "name", v.Name)
err := v.Up(db, history, receipts, txIndex, preImages, thinHistory)
if err != nil {
return err
......@@ -49,7 +49,7 @@ func (m *Migrator) Apply(db ethdb.Database, history, receipts, txIndex, preImage
if err != nil {
return err
}
log.Warn("Applied migration", v.Name)
log.Warn("Applied migration", "name", v.Name)
}
return nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment