1
0
mirror of https://e.coding.net/circlecloud/QuickShop.git synced 2024-11-22 01:58:54 +00:00

change load tip...

Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
j502647092 2015-10-07 15:58:26 +08:00
parent 6532d6f546
commit ad932ecdef

View File

@ -249,6 +249,7 @@ public class QuickShop extends JavaPlugin {
} }
/* Load shops from database to memory */ /* Load shops from database to memory */
int count = 0; // Shops count int count = 0; // Shops count
int unload = 0;
Connection con; Connection con;
try { try {
getLogger().info("从数据库载入商店数据..."); getLogger().info("从数据库载入商店数据...");
@ -292,7 +293,7 @@ public class QuickShop extends JavaPlugin {
} }
count++; count++;
} catch (final IllegalStateException e) { } catch (final IllegalStateException e) {
getLogger().warning("商店区块未载入 跳过商店载入..."); unload++;
} catch (final Exception e) { } catch (final Exception e) {
errors++; errors++;
e.printStackTrace(); e.printStackTrace();
@ -308,6 +309,7 @@ public class QuickShop extends JavaPlugin {
} else { } else {
getLogger().warning("过多的错误数据 可能您的数据库文件已损坏! 请检查数据库文件!"); getLogger().warning("过多的错误数据 可能您的数据库文件已损坏! 请检查数据库文件!");
e.printStackTrace(); e.printStackTrace();
break;
} }
} }
} }
@ -316,8 +318,7 @@ public class QuickShop extends JavaPlugin {
getLogger().warning("错误信息: " + e.getMessage()); getLogger().warning("错误信息: " + e.getMessage());
e.printStackTrace(); e.printStackTrace();
} }
getLogger().info("已载入 " + count + " 个商店 剩余 " + unload + " 个商店将在区块载入后加载...");
getLogger().info("已载入 " + count + " 个商店...");
MsgUtil.loadTransactionMessages(); MsgUtil.loadTransactionMessages();
MsgUtil.clean(); MsgUtil.clean();
// Register events // Register events