My Android app prints this 422 HttpException
error and it comes from Retrofit but in fact, all my requests work fine.
D/retryIO: -----> HTTP 422 Unprocessable Entity
W/System.err: retrofit2.HttpException: HTTP 422 Unprocessable Entity
W/System.err: at retrofit2.KotlinExtensions$await$2$2.onResponse(KotlinExtensions.kt:53)
W/System.err: at retrofit2.OkHttpCall$1.onResponse(OkHttpCall.java:161)
W/System.err: at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
W/System.err: at java.lang.Thread.run(Thread.java:923)
I have a logging interceptor set up and running as well but it does not print any requests that return 422. What can be the reason for that? Any 3rd party library calls? If yes, is there a way to identify that call? Any help would be appreciated.