2011/3/17  <uwe.hellm...@t-systems.com>:
> Thanks for the answer but I already know that catalina.out is standanrd 
> logfile for tomcat.

It is not.
It is not a log file, but just a catch of the System.err and System.out.

It is advisable to remove ConsoleHandler from logging.conf,  to do not
duplicate log messages to the console.

> My questions was where I may find explanations to the error messages which 
> are written to it.
>
> for example what does this error message mean? ->
> org.apache.catalina.cluster.tcp.SimpleTcpCluster memberAdded

For starters, see
1) documentation for java.util.logging in the JDK and tutorials for it.
2) logging documentation in Tomcat.

> org.apache.catalina.cluster.tcp.SimpleTcpCluster memberAdded

It "means" just that the certain line where the log statement was
printed was hit when executing the code. For the rest you must look in
the source and make your guesses. It is open source.

A hint here is that in the first line of the log statement
"org.apache.catalina.cluster.tcp.SimpleTcpCluster" is the name of the
class and "memberAdded" is the name of the method where the logging
method was called.

> or
> Unable to receive message through TCP channel

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to