Closed
Description
Log4j2 has a couple of remaining call sites of String#toLowerCase
and String#toUpperCase
, which are locale-dependent. These calls should be replaced with Strings#toRootLowerCase
and Strings#toRootUpperCase
.
Such a call is present for example in PluginManager
, which causes IfLastModified
to be transformed to ıflastmodified
(with a dotless i), if the locale is Turkish (cf. this SO question).