All Downloads are FREE. Search and download functionalities are using the official Maven repository.

config.logback-spring.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <include resource="org/springframework/boot/logging/logback/defaults.xml" />
    <property name="LOG_FILE" value="${LOG_FILE:-${LOG_PATH:-${LOG_TEMP:-${java.io.tmpdir:-/tmp}}/}spring.log}"/>
    <include resource="org/springframework/boot/logging/logback/file-appender.xml" />
    <springProfile name="dev">
     	<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
	    <root level="DEBUG">
	        <appender-ref ref="CONSOLE" />
	    </root>
     </springProfile>
      <springProfile name="ope">
         <include resource="org/springframework/boot/logging/logback/console-appender.xml" />
	     <root level="INfo">
	        <appender-ref ref="FILE" />
	        <appender-ref ref="CONSOLE" />
	    </root>
     </springProfile>
</configuration>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy