Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 로그백 설정 오타 수정 #334

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: 서브 모듈 프로파일 오타 수정
3Juhwan committed Aug 13, 2024
commit 41565ecc1eb8bf2ee463c5190c01709482131139
9 changes: 7 additions & 2 deletions server/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
@@ -80,13 +80,18 @@
</root>
</springProfile>

<springProfile name="default">
<springProfile name="dev">
<root level="INFO">
<appender-ref ref="CONSOLE"/>
<appender-ref ref="ERROR-ROLLING"/>
<appender-ref ref="WARN-ROLLING"/>
<appender-ref ref="INFO-ROLLING"/>
<appender-ref ref="DEBUG-ROLLING"/>
</root>
</springProfile>

<springProfile name="prod">
<root level="ERROR">
<appender-ref ref="ERROR-ROLLING"/>
</root>
</springProfile>
</configuration>