Commit 6572bbeb authored by yanzg's avatar yanzg

表结构修改

parent 4e279e7e
...@@ -60,9 +60,9 @@ public class ThreadNext { ...@@ -60,9 +60,9 @@ public class ThreadNext {
try { try {
isPause = next.next(); isPause = next.next();
} catch (Exception ex) { } catch (Exception ex) {
boolean isHistoryEx = frontEx == null || !(frontEx.getClass() == ex.getClass() && boolean isNewEx = frontEx == null || !(frontEx.getClass() == ex.getClass() &&
StringHelper.compare(frontEx.getMessage(), ex.getMessage())); StringHelper.compare(frontEx.getMessage(), ex.getMessage()));
if (isHistoryEx) { if (isNewEx) {
ex.printStackTrace(); ex.printStackTrace();
Log.error(ThreadNext.class, ex); Log.error(ThreadNext.class, ex);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment