-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feat/#67 LogBack 설정 #68
Conversation
.gitignore
Outdated
firebase_service_key.json!/log/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분은 어떤 파일인가요?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
띠용 이친구는 깃이그노어 설정중 생긴 오타인 것 같네요!! 처리했습니다!
.gitignore
Outdated
@@ -4,6 +4,7 @@ build/ | |||
!gradle/wrapper/gradle-wrapper.jar | |||
!src/main/**/build/ | |||
!src/test/**/build/ | |||
**/*.log |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log 파일 dev 랑 prod 환경에서만 등록하도록 한 거 맞으면 없어도 될 것 같아욤!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예리하셔라~!
<springProfile name="local"> | ||
<logger name="com.chiwawa.lionheart" level="DEBUG" /> | ||
<root level="INFO"> | ||
<appender-ref ref="CONSOLE" /> | ||
</root> | ||
</springProfile> | ||
<springProfile name="dev"> | ||
<root level="INFO"> | ||
<appender-ref ref="CONSOLE" /> | ||
<appender-ref ref="FILE" /> | ||
</root> | ||
</springProfile> | ||
<springProfile name="prod"> | ||
<root level="INFO"> | ||
<appender-ref ref="CONSOLE" /> | ||
<appender-ref ref="FILE" /> | ||
</root> | ||
</springProfile> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
local 의 경우에는 로그 전부 확인하면서 개발해야 하니 레벨을 trace 로 설정하면 어떨까 싶습니당!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉 글으네요 좋습니다~!!
✒️ 관련 이슈번호
🔑 Key Changes
📢 To Reviewers