216.5. Lumberjack 用法示例
216.5.1. 示例 1:流日志消息
RouteBuilder builder = new RouteBuilder() { public void configure() { from("lumberjack:0.0.0.0"). // Listen on all network interfaces using the default port setBody(simple("${body[message]}")). // Select only the log message to("stream:out"); // Write it into the output stream } };