Skip to content
Snippets Groups Projects
Commit ff696f4a authored by OZGCloud's avatar OZGCloud
Browse files

active info logging; log encoding; update common version

parent f747a9b7
No related branches found
No related tags found
No related merge requests found
package de.ozgcloud.eingang;
import java.nio.charset.Charset;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
import lombok.extern.log4j.Log4j2;
@Log4j2
@Component
class LogRunner implements ApplicationListener<ContextRefreshedEvent> {
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
LOG.info("Standard Charset: " + Charset.defaultCharset());
}
}
......@@ -2,6 +2,7 @@ logging:
level:
ROOT: WARN
'[de.itvsh]': INFO
'[de.ozgcloud]': INFO
server:
port: 8080
......
......@@ -31,7 +31,7 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-parent</artifactId>
<version>2.3.1</version>
<version>2.3.2-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment