log - print exception stack

This commit is contained in:
baofengqi
2023-05-04 14:49:53 +08:00
parent f0d0ed7c14
commit f1ec681bb1

View File

@@ -348,7 +348,7 @@ public final class DbleServer {
p.checkBackendCons();
}
} catch (Exception e) {
LOGGER.info("checkBackendCons caught err:" + e);
LOGGER.warn("checkBackendCons caught err", e);
}
}
});
@@ -360,7 +360,7 @@ public final class DbleServer {
p.checkFrontCons();
}
} catch (Exception e) {
LOGGER.info("checkFrontCons caught err:" + e);
LOGGER.info("checkFrontCons caught err", e);
}
}
});