I see that I can log some internal log statements w/ Logger interface and then pipe them to something like Timber.
apolloClient = ApolloClient.builder()
.serverUrl(baseUrl)
.logger((priority, message, t, args) -> Timber.tag("Apollo").d(message, args))
.build();
````
But I'm only seeing a few logs like this:
Cache MISS for operation com.example.api.GetSomethingQuery@df79fb2
```
How can I log the full json response?
If you want to log the network calls just provide the custom OkHttpClient in ApolloClient builder with the logging network interceptor.
How should this be done? I would like to include a dependency thats compatible with the OkHttp versions used by Apollo?
Most helpful comment
If you want to log the network calls just provide the custom OkHttpClient in ApolloClient builder with the logging network interceptor.