This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new e4c5de0 Update camel-maven-plugin.adoc e4c5de0 is described below commit e4c5de084aa0a132c91f4f8cd628f5d65d114068 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Jan 26 07:11:07 2021 +0100 Update camel-maven-plugin.adoc --- .../modules/ROOT/pages/camel-maven-plugin.adoc | 28 ---------------------- 1 file changed, 28 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-maven-plugin.adoc b/docs/user-manual/modules/ROOT/pages/camel-maven-plugin.adoc index 0678cb1..acd7d63 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-maven-plugin.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-maven-plugin.adoc @@ -92,31 +92,3 @@ The plugin will construct a classpath of any Maven dependency with scope "compile". The classpath is output as an INFO log statement upon startup. -== Route Information - -Information about the generated routes is available through the GraphViz -report, and also through the log statements generated by the run goal. -If you would like to see this information then add a log4j (or other -commons-logging implementation) config file with the following levels. - -*src/main/resources/log4.properties* - -[source,syntaxhighlighter-pre] ----- -log4j.rootLogger=INFO, stdout -log4j.appender.stdout=org.apache.log4j.ConsoleAppender -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout -log4j.appender.stdout.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n - -log4j.logger.org.apache.camel.impl.DefaultCamelContext=DEBUG, stdout -log4j.additivity.org.apache.camel.impl.DefaultCamelContext=false ----- - -This should produce a log statement similar to: - -[source,syntaxhighlighter-pre] ----- -670 [org.apache.camel.spring.Main.main()] DEBUG org.apache.camel.impl.DefaultCamelContext - - Adding routes from: Routes: [Route[ [From[jms:queue:queueA]] -> [To[jms:queue:queueB], To[jms:queue:queueC]]]] routes: [] ----- -