Is there any easy way to debug `kotlin.NotImplemen...
# multiplatform
j
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
No stacktrace?
j
no, only this line
m
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
nope, nothing 😞
g
Check calls of TODO() function
j
tanks, I’ve found the reason, it’s json parsing 🙂