logback-spring.xml
601 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="com/itheima/tools/log/logback/itcast-defaults.xml"/>
<springProfile name="test,docker,prod">
<logger name="com.itheima.itcast.gateway" additivity="true" level="DEBUG">
<appender-ref ref="ASYNC_CONTROLLER_APPENDER"/>
</logger>
</springProfile>
<springProfile name="dev">
<logger name="com.itheima.itcast.gateway" additivity="true" level="DEBUG">
<appender-ref ref="CONTROLLER_APPENDER"/>
</logger>
</springProfile>
</configuration>