ARCore 통화 로깅

Android 기기에서 런타임 동작 및 성능 문제를 해결할 때 ARCore API 호출을 Android 기기 로그.

통화 기록을 사용 설정하면 ARCore에서 모든 API 호출을 C API로 기록합니다. 앱 빌드에 사용된 SDK와 상관없이 모든 API가 포함되어야 합니다. 모든 C API 이름은 C API 참조 문서에서 매개변수 및 반환 값입니다.

API 호출 로깅 사용 설정

ArSession* 매개변수를 사용하지 않는 ARCore API 호출(예: *_destroy) 및 *_release 함수는 로깅되지 않습니다.

ARCore API 호출 로깅을 사용 설정하려면 다음 단계를 따르세요.

  1. Google Play AR 서비스 (ARCore) 1.23 이상이 설치되어 있는지 확인합니다.

    • Windows의 경우 adb shell pm dump com.google.ar.core | findstr /i "packages: versionName"를 실행합니다.
    • macOS에서는 adb shell pm dump com.google.ar.core | egrep -i versionName\|packages:를 실행합니다.
  2. 활성 ARCore 세션이 표시되도록 앱에서 AR 환경을 엽니다. 있습니다 앱이 AR 모드여야 하며 로깅이 필요합니다. AR 카메라 미리보기 이미지가 기기에 표시되어야 합니다. 화면

  3. 다음 활동 관리자 브로드캐스트 명령어를 사용하여 통화 로깅을 사용 설정합니다. 할 수 있습니다.

    # Enables ARCore call logging and saves a setting to your app's
    # Android Shared Preferences, so that call logging remains enabled in
    # subsequent ARCore sessions.
    
    # Your app must have an actively running ARCore session to receive the broadcast.
    adb shell am broadcast -a com.google.ar.core.ENABLE_API_CALL_LOGGING
    

API 호출 로깅 사용 중지

ARCore API 호출 로깅을 사용 중지하려면 다음 단계를 따르세요.

  1. 활성 ARCore 세션이 표시되도록 앱에서 AR 환경을 엽니다. 있습니다 사용 중지되는 브로드캐스트를 수신하려면 앱이 AR 모드여야 합니다. 로깅이 필요합니다. AR 카메라 미리보기 이미지가 기기에 표시되어야 합니다. 화면

  2. 다음 활동 관리자 브로드캐스트 명령어를 사용하여 통화 로깅 사용 중지 :

    # Disables ARCore call logging and saves a setting to your app's
    # Android Shared Preferences, so that call logging remains disabled in
    # subsequent ARCore sessions.
    
    # Your app must have an actively running ARCore session to receive the broadcast.
    adb shell am broadcast -a com.google.ar.core.DISABLE_API_CALL_LOGGING
    

출력 보기

ARCore는 모든 ARCore API 로깅 출력에 ARCore-Api 태그를 사용합니다. 사용 해당 호출만 필터링할 수 있습니다.

# Currently, ARCore only logs API calls that take an `ArSession*` argument.
# Functions that do not take session parameters such as `*_destroy` and `*_release` are not logged.
# -s is equivalent to the filter expression '*:S', which sets priority for all tags to silent.

adb logcat -s ARCore-Api

ARCore는 출력을 비율로 제한하여 로그 스팸을 줄입니다. 건너뛴 로그 집계 하나의 로그 메시지로 통합할 수 있습니다.

건너뛴 로그 메시지의 출력 예시:

D ARCore-Api: ArFrame_create(<ptr>)
D ARCore-Api: ArSession_update(<ptr>) -> AR_SUCCESS
D ARCore-Api: ArFrame_acquireCamera(<ptr>, <ptr>)
D ARCore-Api: ArFrame_getDisplayGeometryChanged(<ptr>, <ptr>)
D ARCore-Api: ArCamera_getTrackingFailureReason(<ptr>, <ptr>)
D ARCore-Api: ArFrame_getTimestamp(<ptr>, <ptr>)
D ARCore-Api: ArSession_setDisplayGeometry(0, 1080, 2195)
D ARCore-Api: ArFrame_create(<ptr>) (suppressing for 10s)
D ARCore-Api: ArSession_update(<ptr>) -> AR_SUCCESS (suppressing for 10s)
D ARCore-Api: ArFrame_acquireCamera(<ptr>, <ptr>) (suppressing for 10s)
D ARCore-Api: ArFrame_getDisplayGeometryChanged(<ptr>, <ptr>) (suppressing for 10s)
D ARCore-Api: ArCamera_getTrackingFailureReason(<ptr>, <ptr>) (suppressing for 10s)
D ARCore-Api: ArFrame_getTimestamp(<ptr>, <ptr>) (suppressing for 10s)
D ARCore-Api: ArSession_setDisplayGeometry(0, 1080, 2195) (suppressing for 10s)