Details
-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
None
-
None
-
Component: slf4j-jdk-platform-logging
Description
This line here:
message = String.format(message, params);
Should instead be:
message = MessageFormat.format(message, params);
Such that it matches the expected format of System.Logger.log() ... as per https://docs.oracle.com/javase/9/docs/api/java/lang/System.Logger.html#log-java.lang.System.Logger.Level-java.lang.String-java.lang.Object...-