diff --git a/openvidu-server/src/main/java/io/openvidu/server/utils/GeoLocationByIpUtils.java b/openvidu-server/src/main/java/io/openvidu/server/utils/GeoLocationByIpUtils.java index b7c443ca2..07c027641 100644 --- a/openvidu-server/src/main/java/io/openvidu/server/utils/GeoLocationByIpUtils.java +++ b/openvidu-server/src/main/java/io/openvidu/server/utils/GeoLocationByIpUtils.java @@ -40,12 +40,12 @@ public class GeoLocationByIpUtils { @PostConstruct public void init() { try { - log.info("GeoLocationByIpUtils: Trying to load GeoLite2-City database..."); + log.info("Trying to load GeoLite2-City database..."); Resource resource = resourceLoader.getResource("classpath:GeoLite2-City.mmdb"); InputStream dbAsStream = resource.getInputStream(); // Initialize the reader reader = new DatabaseReader.Builder(dbAsStream).fileMode(Reader.FileMode.MEMORY).build(); - log.info("GeoLocationServiceImpl: Database was loaded successfully"); + log.info("Database was loaded successfully"); } catch (IOException | NullPointerException e) { log.error("Database reader cound not be initialized", e); }