problem: unnecessary logging

This commit is contained in:
Igor Artamonov
2019-08-22 15:19:58 -04:00
parent 6716abfb4d
commit 5dab6115b3

View File

@@ -34,7 +34,7 @@ class NativeCall(
.flatMap(this::fetch) .flatMap(this::fetch)
.sequential() .sequential()
.map(this::buildResponse) .map(this::buildResponse)
.doOnError { e -> log.warn("Error during native call", e) } .doOnError { e -> log.warn("Error during native call: ${e.message}") }
.onErrorResume(this::processException) .onErrorResume(this::processException)
} }