ppkarwasz opened a new issue, #1281: URL: https://github.com/apache/logging-log4j2/issues/1281
Log4j2 has a couple of remaining call sites of `String#toLowerCase()` and `String#toUpperCase()`, which are locale-dependent. These calls should be replaced with `toLowerCase(Locale.ENGLISH)` and `toUpperCase(Locale.ENGLISH)`. 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](https://stackoverflow.com/q/51538312/11748454)). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
