Hi Toby,
JavaMelody does not read any tomcat log files or custom log files.
The logs displayed in the reports are only based on listeners for
java.util.logging and, if available, Log4J and Logback.
The listeners are registered when the webapp is started, as you can see
here:
https://code.google.com/p/javamelody/source/browse/trunk/javamelody-core/src/main/java/net/bull/javamelody/FilterContext.java#241
So the custom logs of your webapp are in general already displayed, if
they use one of the three logging frameworks.
Note that the goal of the logs displayed is to diagnose potential issues
and how often they are, without too much volume neither overhead, and so
only the logs of the WARNING level or above are displayed in the reports.
For example, the Log4J listener is registered with a Level.WARN threshold:
https://code.google.com/p/javamelody/source/browse/trunk/javamelody-core/src/main/java/net/bull/javamelody/Log4JAppender.java#31
bye,
Emeric
Le 22/05/2013 12:19, Toby a �crit :