BAEL-3921: Remove adding a redundant log handler (#8881)

This commit is contained in:
kwoyke 2020-03-18 07:44:23 +01:00 committed by GitHub
parent fa97ab6c43
commit 932eba6929
1 changed files with 1 additions and 8 deletions

View File

@ -19,8 +19,8 @@ public class User {
}
public static User createWithLoggedInstantiationTime(String name, String email, String country) {
setLoggerProperties();
LOGGER.log(Level.INFO, "Creating User instance at : {0}", LocalTime.now());
return new User(name, email, country);
}
@ -53,11 +53,4 @@ public class User {
public String getCountry() {
return country;
}
private static void setLoggerProperties() {
ConsoleHandler handler = new ConsoleHandler();
handler.setLevel(Level.INFO);
handler.setFormatter(new SimpleFormatter());
LOGGER.addHandler(handler);
}
}