-
Notifications
You must be signed in to change notification settings - Fork 0
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] Splash, SignIn, SignUp 로깅 세팅 #197
Conversation
setLoggingScheme( | ||
eventLogName = eventLogName, | ||
screenName = screenName, | ||
logVersion = logVersion, | ||
logData = logData.toMutableMap() | ||
) |
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.
이 메소드는 어디에 속한 메소드인가요?
private fun shotSignInExposureLogging() { | ||
val scheme = SwmCommonLoggingScheme.Builder() | ||
.setEventLogName("signInExposure") | ||
.setScreenName(this.javaClass) | ||
.build() | ||
signInViewModel.shotSignInExposureLogging(scheme) | ||
} |
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.
모든 액티비티마다 이러한 로깅을 쏘게된다면 BaseActivity에 묻어서 로깅을 처리할 방법은 없을지도 생각해보면 좋을거같아요.
미뤄두었던 요청하신 마지막 코드리뷰 진행했습니다 ㅎㅎ 내년에는 새로운 시간과 주제로 또 같이 많이 이야기해보시죠 |
To 멘토님
SwmCommonLoggingScheme
는 backend api에 만들때와 같이 map 형태를 활용합니다ScreenName
,EventName
을 Builder를 활용해 지정하게끔 변경했습니다.