fix(events): correct log msg for v4 events index db migration

This commit is contained in:
Rod Vagg 2024-04-29 14:06:27 +10:00
parent 15f5f4745d
commit aa76a45086

View File

@ -363,7 +363,7 @@ func (ei *EventIndex) migrateToVersion4(ctx context.Context) error {
ei.vacuumDBAndCheckpointWAL(ctx)
log.Infof("Successfully migrated events to version 3 in %s", time.Since(now))
log.Infof("Successfully migrated event index from version 3 to version 4 in %s", time.Since(now))
return nil
}