in plugin-bazel-event-service/src/main/kotlin/bazel/handlers/BuildEventHandlerChain.kt [94:101]
override fun handle(ctx: BuildEventHandlerContext): Boolean {
handlers.firstOrNull { it.handle(ctx) } ?: UnknownEventHandler().handle(ctx)
if (ctx.verbosity.atLeast(Verbosity.Diagnostic)) {
ctx.writer.trace(ctx.event.toString(), hasPrefix = false)
}
return true
}