Log 3

[iOS / Xcode / Console / Log] Class _PathPoint is implemented in both... 로그 분석

Xcode 13으로 업데이트 후 위와 같은 로그가 발생했습니다. 찾아보니 Objective-C로 런타임 시, _PathPoint와 _PointQueue라는 두 개의 동일한 클래스가 생성되어 둘 중 하나를 사용될 것이라는 로그입니다. 따라서 무시해도 상관없는 로그 노이즈라고 합니다. ※ 참고 출처 stackoverflow Class _PointQueue is implemented in both when I click on textfield... How can I resolve this issue? I'm using xcode 13 and making a demo on coredata. objc[6188]: Class _PathPoint is implemented in both /Applications/Xc..

Xcode 2022.01.17

[iOS / Xcode / Console / Log] Writing analzed variants 로그 분석

Xcode 13으로 업데이트 후 위와 같은 로그가 발생했습니다. 사실 해당 로그가 나타나도 빌드나 앱 실행에 영향을 미치는 것 같지는 않았습니다. 찾아보니 해당 로그는 Xcode 로그 노이즈이며 무시해도 상관없다고 합니다. ※ 참고 출처 stackoverflow Xcode log "Writing analzed variants" Running Xcode 13 I see the following log when launching my iOS app in the Simulator: Writing analzed variants. Note that this is, hopefully, a misspelling of the log: Writing analyzed variants. ... stackoverflow.com

Xcode 2022.01.17

[맥 / Android / Kotlin] Live Templates를 이용해서 log 추가하기

Live Templates를 이용해서 log 추가하는 방법을 알아보겠습니다. log는 안드로이드 앱이 잘 구동되고 있는지, 혹은 에러가 발생했는지를 체크하기 위한 API입니다. log를 남길 때 자신만의 방식으로 더 편하게 남기고 싶을 때 Live Template을 이용할 수 있습니다. [Step 1] Android Studio -> Preferences... [Step 2] Live Templates 클릭 [Step 3] Kotlin 클릭 후 '+' 버튼 클릭 [Step 4] logd 추가 후, Edit variables 클릭 [Step 5] Expression에 각각 kotlinClassName(), kotlinFunctionName() 입력 후 OK [Step 6] Define 클릭, Kotlin ..

Android/Kotlin 2021.06.21