From bc73d70e2126b2bf801978b97da125f17c3cfa19 Mon Sep 17 00:00:00 2001 From: 2sky <2skydev@gmail.com> Date: Tue, 10 Oct 2023 03:48:55 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=EB=A7=88=EC=9D=B4?= =?UTF-8?q?=EA=B7=B8=EB=A0=88=EC=9D=B4=EC=85=98=20=EB=A1=9C=EA=B7=B8=20-?= =?UTF-8?q?=20=EB=B2=84=EC=A0=84=20=EA=B8=B0=EB=A1=9D=20=EB=B2=84=EA=B7=B8?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/modules/migration/migration.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/modules/migration/migration.module.ts b/src/main/modules/migration/migration.module.ts index f6be401..9c5f37e 100644 --- a/src/main/modules/migration/migration.module.ts +++ b/src/main/modules/migration/migration.module.ts @@ -59,9 +59,9 @@ export class MigrationModule { for (const version of executableMigrationVersions) { try { await this[version]() - log.info(`[Migration Module] Migrated to ${currentVersion}`) + log.info(`[Migration Module] Migrated to ${version}`) } catch (error) { - log.error(`[Migration Module] ${currentVersion}\n`, error) + log.error(`[Migration Module] ${version}\n`, error) } }