problem: unnecessary logging
This commit is contained in:
@@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user