in plugin-bazel-event-service/src/main/kotlin/bazel/GrpcServerLoggingInterceptor.kt [21:30]
override fun close(
status: Status,
trailers: Metadata?,
) {
if (status != Status.OK) {
_messageWriter.error("gRPC error: ${status.code} - ${status.description}")
}
super.close(status, trailers)
}