IoHandler and LoggingFilter question

2008-10-20 Thread Chandrajeet Padhy
Hi All, I am having a trouble with the IoHandlerAdapter. I can see messages transmitting and only messageSent gets invoked. Even if there is a message reply it doesn't come into messageReceived method. Thus I reused the logging filter to handle message receipts as a work around. as below

Re: IoHandler and LoggingFilter question

2008-10-20 Thread Emmanuel Lecharny
Chandrajeet Padhy wrote: Hi All, I am having a trouble with the IoHandlerAdapter. I can see messages transmitting and only messageSent gets invoked. Even if there is a message reply it doesn't come into messageReceived method. Thus I reused the logging filter to handle message receipts as a

Re: IoHandler and LoggingFilter question

2008-10-20 Thread Chandrajeet Padhy
Thanks Emanuael for writing, But the SessionLog class is part of the core1-1-6.jar. I dont use SLF4J. We use log4j. SessionLog puts the messages on [STDERR] console appender. I just want to suppress all SessionLog messages. Is there a machanism? Much appreciated of your time, Chandra On Mon,

Re: IoHandler and LoggingFilter question

2008-10-20 Thread Chandrajeet Padhy
Hi Emanuael, Thanks for replying. I am using log4-jboss configurations and my root looks like. root priority value=INFO/ appender-ref ref=CONSOLE/ appender-ref ref=FILE/ /root I don't want any log message from apache SessionLog. I went added a new appender category

Re: IoHandler and LoggingFilter question

2008-10-20 Thread Emmanuel Lecharny
Chandrajeet Padhy wrote: Hi Emanuael, Thanks for replying. I am using log4-jboss configurations and my root looks like. root priority value=INFO/ appender-ref ref=CONSOLE/ appender-ref ref=FILE/ /root I don't want any log message from apache SessionLog. I went added a new