https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
j

Jaroslav

03/08/2019, 11:22 AM
Is there any easy way to debug
kotlin.NotImplementedError: An operation is not implemented: Not implemented
? I`m using kotlin library in ios, with a lot of code, so it will take me a lot of time to find what exactly is not implemented 😞
m

marstran

03/08/2019, 11:29 AM
No stacktrace?
j

Jaroslav

03/08/2019, 11:29 AM
no, only this line
m

marstran

03/08/2019, 11:31 AM
Not sure if it applies to you, but I know some systems starts to drop the stack trace if the same exception happens a lot of times. So you might be lucky if you find an older log statement.
j

Jaroslav

03/08/2019, 11:34 AM
nope, nothing 😞
g

gildor

03/08/2019, 12:36 PM
Check calls of TODO() function
j

Jaroslav

03/08/2019, 12:37 PM
tanks, I’ve found the reason, it’s json parsing 🙂
7 Views