trying to find null in response - log value

This commit is contained in:
a10zn8
2022-12-09 18:10:53 +04:00
parent 6ffcbe2e45
commit 7b0b29980b

View File

@@ -120,7 +120,7 @@ open class NativeCall(
}
} else {
if (it.result == null || it.result.isEmpty()) {
log.warn("Empty result on building response, method ${it.ctx?.payload?.method}, params ${it.ctx?.payload?.params}")
log.warn("Empty result [${it.result}] on building response, method ${it.ctx?.payload?.method}, params ${it.ctx?.payload?.params}")
}
result.payload = ByteString.copyFrom(it.result)
}