215.5. Lumberjack の使用例
215.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
}
};