From 353d6d2314296aa677a7783d955a5f1ec84df578 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Sat, 7 Jun 2025 08:19:02 +0200 Subject: [PATCH] fix lint --- database/src/AppDatabase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/src/AppDatabase.ts b/database/src/AppDatabase.ts index 529321649..2a6181a26 100644 --- a/database/src/AppDatabase.ts +++ b/database/src/AppDatabase.ts @@ -1,9 +1,9 @@ import { DataSource as DBDataSource, FileLogger } from 'typeorm' import { Migration, entities } from './entity' +import { getLogger } from 'log4js' import { latestDbVersion } from '.' import { CONFIG } from './config' -import { getLogger } from 'log4js' import { LOG4JS_BASE_CATEGORY_NAME } from './config/const' const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.AppDatabase`)