Skip to content

Commit

Permalink
chore: dev 서버 콘솔 로그 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
poi1649 authored Dec 7, 2023
1 parent 885981d commit 50a7d50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
value="[%d{yyyy-MM-dd HH:mm:ss}:%-4relative] %green([%thread]) %highlight(%-5level) %cyan([%C.%M:%yellow(%L)]) - %msg%n"/>

<!-- 프로덕션 외의 환경 -->
<springProfile name="local, test, default, prod">
<springProfile name="local, test, default, prod, dev">
<include resource="console-appender.xml"/>

<root level="INFO">
Expand All @@ -14,7 +14,7 @@
</springProfile>

<!-- 개발 환경 -->
<springProfile name="dev">
<!-- <springProfile name="dev">
<include resource="dev-file-appender.xml"/>
<root level="INFO">
Expand All @@ -27,7 +27,7 @@
<root level="ERROR">
<appender-ref ref="ASYNC_SLACK"/>
</root>
</springProfile>
</springProfile> -->

<!-- 프로덕션 환경 -->
<!-- <springProfile name="prod">-->
Expand Down

0 comments on commit 50a7d50

Please sign in to comment.