Skip to content

Commit d0e2925

Browse files
lalilunaSebastian
andauthored
Reduce log level down to info when javax el is not available (#811)
Co-authored-by: Sebastian <[email protected]>
1 parent f3bd98f commit d0e2925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/github/dozermapper/core/el/ELExpressionFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static Boolean isSupported(ClassLoader classLoader) {
5757

5858
LOG.info("javax.el support is {}", isJavaxEL);
5959
} catch (IllegalStateException ex) {
60-
LOG.warn("javax.el is not supported; {}", ex.getMessage());
60+
LOG.info("javax.el is not supported; {}", ex.getMessage());
6161

6262
isJavaxEL = false;
6363
}

0 commit comments

Comments
 (0)