Skip to content

Commit

Permalink
Fix: staging 환경 logback에 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
BYEONGRYEOL committed Aug 5, 2024
1 parent ef13082 commit f5eaced
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions genti-api/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@
</root>
</springProfile>

<springProfile name="staging">
<include resource="console-appender.xml"/>
<include resource="discord-appender.xml"/>
<include resource="file-appender.xml"/>

<root level="INFO">
<appender-ref ref="ASYNC_DISCORD"/>
<appender-ref ref="CONSOLE"/>
<appender-ref ref="FILE"/>
</root>
</springProfile>

<springProfile name="deploy">
<include resource="console-appender.xml"/>
<include resource="discord-appender.xml"/>
Expand Down

0 comments on commit f5eaced

Please sign in to comment.