1
mirror of https://github.com/CarmJos/cn2b2t-project.git synced 2026-06-04 18:17:19 +08:00

修复logger无法加载的问题

This commit is contained in:
carm
2020-05-29 10:52:52 +08:00
parent 3317747d84
commit d808468e84
2 changed files with 4 additions and 3 deletions
@@ -36,7 +36,7 @@ public class LoggerManager {
public static void writeIn(UUID uuid, final String name, final int port, final LogType t, final String value) {
DataManager.getConnection().insertAsyn(tableName,
new String[]{"uuid", "server", "time", "time", "name", "type", "value"},
new String[]{"uuid", "server", "time", "name", "type", "value"},
new Object[]{uuid.toString(), port, getDateString(), name, t.name(), StringEscapeUtils.escapeSql(value)});
}