Skip to content
Snippets Groups Projects
Select Git revision
  • 7cfbd8b78ee523208613c1de91ae9a53e0b4697d
  • main default protected
  • OZG-8400-UpdateToV26
  • release
  • 2.8.1
  • 2.8.0
  • 2.7.0
  • 2.6.0
  • 2.5.0
  • 2.4.0
  • 2.3.0
  • 2.2.0
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 1.1.0
  • 1.0.0
17 results

log4j2.xml

Blame
  • log4j2.xml 443 B
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    
    	<Appenders>
    		<Console name="LogInJSON" target="SYSTEM_OUT">
    			<!-- <JsonLayout compact="true" properties="true" eventEol="true"></JsonLayout> -->
    			<JsonTemplateLayout
    				eventTemplateUri="classpath:EcsLayout.json" 
    				maxStringLength="65536" />
    		</Console>
    	</Appenders>
    
    	<Loggers>
    		<Root level="INFO">
    			<appender-ref ref="LogInJSON" />
    		</Root>
    	</Loggers>
    </configuration>