Skip to content

Commit

Permalink
Merge pull request #307 from jminkkk/fix/logback_dev
Browse files Browse the repository at this point in the history
logback springProfile 재지정
  • Loading branch information
jminkkk authored Aug 7, 2024
2 parents c29c24f + 9e70bf2 commit e3fc0b8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions backend/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@
<include resource="logger/logback-spring-local.xml"/>
</springProfile>

<springProfile name="dev">
<springProfile name="dev-1">
<include resource="logger/logback-spring-dev.xml"/>
</springProfile>

<springProfile name="prod">
<springProfile name="dev-2">
<include resource="logger/logback-spring-dev.xml"/>
</springProfile>

<springProfile name="prod-1">
<include resource="logger/logback-spring-prod.xml"/>
</springProfile>

<springProfile name="prod-2">
<include resource="logger/logback-spring-prod.xml"/>
</springProfile>

Expand Down

0 comments on commit e3fc0b8

Please sign in to comment.