Kotlin Coroutines-debug 예제& 디버깅 Tutorial & 코루틴 가이드
디버깅 Tutorial
https://kotlinlang.org/docs/debug-coroutines-with-idea.html#debug-coroutines
메모리 leak?
This text means that the variable's lifetime was decreased, and the variable doesn't exist anymore. It is difficult to debug code with optimized variables because you don't see their values. You can disable this behavior with the -Xdebug compiler option.
Never use this flag in production: -Xdebug can cause memory leaks.
https://youtrack.jetbrains.com/issue/KT-48678/Coroutine-debugger-disable-was-optimised-out-compiler-feature?_gl=1*1dmmmrj*_ga*MTM4ODAyODIwMi4xNzAwOTEyNjYy*_ga_9J976DJZ68*MTcwMDkxMjY2MS4xLjEuMTcwMDkxMzI5NC42MC4wLjA.&_ga=2.9542003.715637141.1700912662-1388028202.1700912662#focus=Comments-27-6015585.0-0
https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-debug/
https://github.com/reactor/BlockHound/blob/1.0.8.RELEASE/docs/quick_start.md
https://stackoverflow.com/questions/59345012/kotlin-android-how-to-debug-coroutines-correctly
다른글 보기
코틀린 문법 총 정리 - https://economiceco.tistory.com/m/19102