diff --git a/Lagrange.OneBot/Extensions/HostApplicationBuilderExtension.cs b/Lagrange.OneBot/Extensions/HostApplicationBuilderExtension.cs index e5c345ae6..af8d2ae7f 100644 --- a/Lagrange.OneBot/Extensions/HostApplicationBuilderExtension.cs +++ b/Lagrange.OneBot/Extensions/HostApplicationBuilderExtension.cs @@ -91,7 +91,7 @@ public static HostApplicationBuilder ConfigureOneBot(this HostApplicationBuilder string litedb = dpath ?? $"./lagrange-{configuration["Account:Uin"]}.db"; if (File.Exists(litedb)) { logger.LogCritical("Found LiteDB database, currently Lagrange.OneBot has been migrated to Realm database"); - logger.LogCritical("Please remove {} or refer to https://lagrangedev.github.io/Lagrange.Doc/Lagrange.OneBot/#从-litedb-迁移到-realm to migrate the database to Realm", litedb); + logger.LogCritical("Please delete {0} if you no longer need the data in the database; otherwise, please refer to https://lagrangedev.github.io/Lagrange.Doc/Lagrange.OneBot/#从-litedb-迁移到-realm to migrate the database to Realm", litedb); logger.LogCritical("Press any key to terminate the program"); Console.ReadKey(true); host.StopAsync(default);