fix: change catch log level from error to warn, exception is handled properly

This commit is contained in:
金闪闪 2026-05-24 01:54:03 +00:00 committed by Gitee
parent 9b7e69d739
commit 793a99cbd9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public class CatchCondition extends Condition {
//ChainEndException属于用户主动结束流程不应该进入Catch的流程
throw e;
}catch (Exception e) {
LOG.error("catch exception:" + e.getMessage(), e);
LOG.warn("catch exception (handled):" + e.getMessage(), e);
Executable doExecutable = this.getDoItem();
if (ObjectUtil.isNotNull(doExecutable)) {
doExecutable.setCurrChainId(this.getCurrChainId());
@ -70,4 +70,4 @@ public class CatchCondition extends Condition {
this.addExecutable(ConditionKey.DO_KEY, executable);
}
}
}