We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95720ef + 3404fd4 commit e49ac7dCopy full SHA for e49ac7d
src/main/modules/migration/migration.module.ts
@@ -59,9 +59,9 @@ export class MigrationModule {
59
for (const version of executableMigrationVersions) {
60
try {
61
await this[version]()
62
- log.info(`[Migration Module] Migrated to ${currentVersion}`)
+ log.info(`[Migration Module] Migrated to ${version}`)
63
} catch (error) {
64
- log.error(`[Migration Module] ${currentVersion}\n`, error)
+ log.error(`[Migration Module] ${version}\n`, error)
65
}
66
67
0 commit comments