We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63fc91 commit ef297d7Copy full SHA for ef297d7
fluent-validator/src/main/java/com/baidu/unbiz/fluentvalidator/FluentValidator.java
@@ -489,7 +489,8 @@ public FluentValidator doValidate(ValidateCallback cb) {
489
} finally {
490
GroupingHolder.clean();
491
int timeElapsed = (int) (System.currentTimeMillis() - start);
492
- LOGGER.debug("End to validate through" + validatorElementList + " costing " + timeElapsed + "ms");
+ LOGGER.debug("End to validate through" + validatorElementList + " costing " + timeElapsed + "ms with "
493
+ + "isSuccess=" + result.isSuccess());
494
result.setTimeElapsed(timeElapsed);
495
}
496
return this;
0 commit comments