Thread: [Quickfix-users] logging
Brought to you by:
orenmnero
From: David G. <Dav...@ig...> - 2007-06-20 16:14:51
|
Here's my first dumb question for the mail list, is there an example of logging configuration for QuickFixJ with Log4J ? I'd like to stop the logging of messages to stderr/stdout,=20 regards Dave IG Index The information contained in this email is strictly confidential and for = the use of the addressee only, unless otherwise indicated. If you are not= the intended recipient, please do not read, copy, use or disclose to oth= ers this message or any attachment. Please also notify the sender by repl= ying to this email or by telephone +44 (0)20 7896 0011 and then delete th= e email and any copies of it. Opinions, conclusions (etc.) that do not re= late to the official business of this company shall be understood as neit= her given nor endorsed by it. IG Markets Limited and IG Index Plc are aut= horised and regulated by the Financial Services Authority and, in Austral= ia, by the Australian Securities and Investments Commission. |
From: Hei C. <str...@ya...> - 2009-07-10 18:17:49
|
Hi, I am new to quickfix, so please bear with my dumb questions for quickfix C++. - *.body generated by quickfix stores the incoming messages? or the outgoing message? - I sent a logon request (type A) to my vendar, and he said that he didn't receive my logon request at all but I received a junk response (i.e. duplicated tags and unexpected tag) according to my gdb. Is there anyway to turn on more logging in quickfix? Thanks in advance. Cheers, Hei |
From: Djalma R. d. S. F. <drs...@gm...> - 2009-07-12 22:56:38
|
Hei, The body file stores the outgoing messages. The log files available are the messages.log and event.log (an evidence of the junk response you received should be found here). Djalma On Fri, Jul 10, 2009 at 3:17 PM, Hei Chan<str...@ya...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Hi, > > I am new to quickfix, so please bear with my dumb questions for quickfix C++. > - *.body generated by quickfix stores the incoming messages? or the outgoing message? > - I sent a logon request (type A) to my vendar, and he said that he didn't receive my logon request at all but I received a junk response (i.e. duplicated tags and unexpected tag) according to my gdb. Is there anyway to turn on more logging in quickfix? > > Thanks in advance. > > Cheers, > Hei > > > ------------------------------------------------------------------------------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > vendors submitting new applications to BlackBerry App World(TM) will have > the opportunity to enter the BlackBerry Developer Challenge. See full prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users > > |
From: David G. <Dav...@ig...> - 2007-06-20 19:44:09
|
I found enough of the answer in this posting,=20 http://www.nabble.com/QF-J-message-and-event-logs-t3688701.html=20 In your code select the SLF4J logger, =2E.. LogFactory logFactory =3D new SLF4JLogFactory(settings); this.initiator =3D new SocketInitiator(this, messageStoreFactory, settings, logFactory, messageFactory); =2E.. It seems you need to specify the logging category directives in the config file, the defaults did not seem to work but that could be my mistake. =2E.. [session] =2E.. "SLF4JLogIncomingMessageCategory=3Dquickfixj.msg.incoming" "SLF4JLogOutgoingMessageCategory=3Dquickfixj.msg.outgoing" =2E.. Your Log4J configuration will now be used. =2E.. <category name=3D"quickfixj.msg"> <priority value=3D"info" /> <appender-ref ref=3D"FIX_MSG_LOG" /> </category> =2E.. Hope this helps any others with the same question. Dave -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of David Gibbs Sent: 20 June 2007 17:15 To: qui...@li... Subject: [Quickfix-users] logging QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html The information contained in this email is strictly confidential and for = the use of the addressee only, unless otherwise indicated. If you are not= the intended recipient, please do not read, copy, use or disclose to oth= ers this message or any attachment. Please also notify the sender by repl= ying to this email or by telephone +44 (0)20 7896 0011 and then delete th= e email and any copies of it. Opinions, conclusions (etc.) that do not re= late to the official business of this company shall be understood as neit= her given nor endorsed by it. IG Markets Limited and IG Index Plc are aut= horised and regulated by the Financial Services Authority and, in Austral= ia, by the Australian Securities and Investments Commission. |