Posts filed under 'Log4FIX'

Combining Log4FIX and The QuickFIX/J FileLog

Here is a quick example showing how to use Log4FIX in live mode and the standard QuickFIX/J file log.

SessionSettings settings = ...
Log4FIX forLiveUpdate = Log4FIX.createForLiveUpdates(settings);
LogFactory log4FIXLogFactory = forLiveUpdate.getLogFactory(); 

LogFactory fileLogFactory = new FileLogFactory(settings);

// create a composite containing the Log4FIX LogFactory
// and the FileLogFactory
LogFactory compositeLogFactory = new CompositeLogFactory(new LogFactory[] {
         log4FIXLogFactory, fileLogFactory});  

initiator = new SocketInitiator(..., ..., ..., compositeLogFactory, ...);

...

// show the Log4FIX panel
forLiveUpdate.show();

Your QuickFIX/J application now sends log messages to Log4FIX and to a file.

Enjoy.

Add comment June 28th, 2007

Log4FIX 1.6 Released

I am pleased to announce Log4FIX 1.6. This release fixes a threading bug that swallowed error messags, and adds the capability to automatically import a single file from the command line.

Listed below are the links to the issues resolved in this release:

Here is an example showing how to tell Log4FIX to automatically import a log file when starting Log4FIX:
$ java -jar log4fix-1.6.jar /path/to/my_data.log

Thanks to all that help make Log4FIX a better product.

Add comment March 6th, 2007

Log4FIX 1.5 Released

I am excited to announce the release of Log4FIX 1.5. There are two new features in this release:

2 comments February 3rd, 2007

Log4FIX 1.0 Released

I am pleased to announce the release of Log4FIX 1.0. This release includes numerous bug fixes, enhanced memory management, and updated message logging.

Please visit http://code.google.com/p/log4fix/ for more information.

Add comment January 6th, 2007


Calendar

May 2008
M T W T F S S
« Jun    
 1234
567891011
12131415161718
19202122232425
262728293031  

Posts by Month

Posts by Category