[Quickfix-developers] Logging in QuickFIX
Brought to you by:
orenmnero
|
From: Erich <gra...@al...> - 2007-09-12 15:41:09
|
I've been doing some testing of QuickFIX performance and that suggests that I
might want to run QuickFIX with a logging object. Now the only way I've
found of doing this is to use the constructor for my acceptor without the
logging object. Now this is a bit clunky as if I want to be able to make
logging a configurabel option, e.g.
If (logging)
{
FIX::ThreadSocketAcceptor acceptor(fixApp, storeFactory, settings,
logFactory);
acceptor.start();
....
accceptor.end();
}
else
{
FIX::ThreadSocketAcceptor acceptor(fixApp, storeFactory, settings);
acceptor.start();
...
accceptor.end();
}
Is there a way of controlling this is the QuickFIX config? If I don't
specify a file log path the app exits and I haven't found any other setting
that seesm to relate to this.
--
View this message in context: http://www.nabble.com/Logging-in-QuickFIX-tf4430214.html#a12638361
Sent from the QuickFIX - Dev mailing list archive at Nabble.com.
|