RE: [Quickfix-users] Quickfix/J How do I suppress MINA messages?
Brought to you by:
orenmnero
From: Steve B. <sb...@sm...> - 2006-05-28 07:07:22
|
Hi Chris, The MINA message is logged using the QuickFIX session-oriented logging mechanism. What this means is that all session events are logged=20 to the same log category since the QF API provides no way to specify a=20 category when logging the event. Unfortunately, this makes filtering a=20 little more difficult. It appears you are using the default JDK 1.4 logging as the underyling logging framework. You can write a java.util.logging.Filter and attach it to whatever logging handler you are using.=20 http://java.sun.com/j2se/1.4.2/docs/api/java/util/logging/Filter.html You can also use this technique to filter FIX messages before they saved to log (somebody else asked about that capability recently). Regards, Steve > -----Original Message----- > From: qui...@li...=20 > [mailto:qui...@li...] On Behalf=20 > Of Chris van O > Sent: Sunday, May 28, 2006 2:44 AM > To: qui...@li... > Subject: [Quickfix-users] Quickfix/J How do I suppress MINA messages? >=20 > QuickFIX Documentation:=20 > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html >=20 > May 27, 2006 8:40:10 PM quickfix.mina.acceptor.AcceptorIoHandler=20 > sessionCreated > INFO: MINA session created: /127.0.0.1:2423 > May 27, 2006 8:40:10 PM quickfix.mina.initiator.InitiatorIoHandler=20 > sessionCreated > INFO: MINA session created: /127.0.0.1:2423 >=20 > How can I get rid of these messages? >=20 > Thanks, Chris |