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
}
};
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
}
};