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 6d827b9b1b
commit 375701df9c

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);
}
}