delete debug log

This commit is contained in:
duanfuxiang
2025-01-07 14:22:56 +08:00
parent 0f42ce3b80
commit cd172e371d
8 changed files with 12 additions and 32 deletions

View File

@@ -38,7 +38,6 @@ export class DBManager {
dbManager.templateManager = new TemplateManager(app, dbManager)
dbManager.conversationManager = new ConversationManager(app, dbManager)
console.log('infio database initialized.')
return dbManager
}
@@ -110,7 +109,6 @@ export class DBManager {
// Split SQL into individual commands and execute them one by one
const commands = migration.sql.split('\n\n').filter(cmd => cmd.trim());
for (const command of commands) {
console.log('Executing SQL migration:', command);
await this.db.query(command);
}
}