Skip to content

Commit

Permalink
Fix bug in Slf4jLogImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
daanw-cegeka committed Oct 23, 2018
1 parent 488dc77 commit 61578c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/org/jgroups/logging/Slf4jLogImpl.java
Expand Up @@ -16,8 +16,7 @@
*/
public class Slf4jLogImpl implements Log {
private static final Map<Function<Logger, Boolean>, String> LEVELS = new LinkedHashMap<>();
private static final Locale LOCALE = new Locale(System.getProperty("user.language"),
System.getProperty("user.country"));
private static final Locale LOCALE = Locale.getDefault();

static {
LEVELS.put(Logger::isErrorEnabled, "ERROR");
Expand Down

0 comments on commit 61578c6

Please sign in to comment.