Skip to content

Commit ef297d7

Browse files
committed
change issuccess
1 parent d63fc91 commit ef297d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fluent-validator/src/main/java/com/baidu/unbiz/fluentvalidator/FluentValidator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,8 @@ public FluentValidator doValidate(ValidateCallback cb) {
489489
} finally {
490490
GroupingHolder.clean();
491491
int timeElapsed = (int) (System.currentTimeMillis() - start);
492-
LOGGER.debug("End to validate through" + validatorElementList + " costing " + timeElapsed + "ms");
492+
LOGGER.debug("End to validate through" + validatorElementList + " costing " + timeElapsed + "ms with "
493+
+ "isSuccess=" + result.isSuccess());
493494
result.setTimeElapsed(timeElapsed);
494495
}
495496
return this;

0 commit comments

Comments
 (0)