public void configure()

in http-log/src/main/java/org/acme/http/CamelRoute.java [26:30]


    public void configure() throws Exception {
        from(platformHttp("/camel/hello"))
                .setBody().simple("Camel runs on ${hostname}")
                .to(log("hi").showExchangePattern(false).showBodyType(false));
    }