use of com.toshi.manager.network.interceptor.LoggingInterceptor in project toshi-android-client by toshiapp.
the class EthereumService method addLogging.
private void addLogging() {
final HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(new LoggingInterceptor());
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
this.client.addInterceptor(interceptor);
}
Aggregations