QuickfixJ | Disable partial logging in quickfixj

93 Views Asked by At

How to disable logging only for outgoing and incoming messages (Except the admin messages and heart beat) in quickfixJ?

I tried passing false values to the ScreenLogfactory constructor, still could see the incoming and outgoing messages

1

There are 1 best solutions below

2
Christoph John On BEST ANSWER

Create your own log and factory by implementing quickfix.Log, add your specific logic to onIncoming and onOutgoing and pass your created log factory to your application instead of the ScreenLogFactory.