Re: [Quickfix-developers] Backup log files in .net
Brought to you by:
orenmnero
From: Eugene <je...@gi...> - 2011-06-09 08:44:32
|
Hello, Dominik Looks like problem exist only for .NET users. File: QuickFix\src\.NET\Log.h Line : 11 ---cut--- void backup() { m_log->clear(); } ---cut--- try to replace with this one: ---cut--- void backup() { m_log->backup(); } ---cut--- Regards, Eugene. On Wed, Jun 1, 2011 at 5:36 PM, Dominik Brack <dom...@gm...>wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Here's an example in C# if you work with multiple sessions > > ArrayList sessions = initiator.getSessions(); > { > foreach (var session in sessions) > { > SessionID sessionId = (SessionID)session; > Log logFile = Session.lookupSession(sessionId).getLog(); > logFile.backup(); > } > } > > On Wednesday, June 1, 2011 at 9:17 AM, George wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > George <papasavva2@...> writes: > > > QuickFIX Documentation: > > http://www.quickfixengine.org/quickfix/doc/html/index.html > > QuickFIX Support: http://www.quickfixengine.org/services.html > > Could anyone tell me how to backup the log files in .net > > > ------------------------------------------------------------------------------ > Simplify data backup and recovery for your virtual environment with > vRanger. > Installation's a snap, and flexible recovery options mean your data is > safe, > secure and there when you need it. Data protection magic? > Nope - It's vRanger. Get your free trial download today. > http://p.sf.net/sfu/quest-sfdev2dev > > > Any news on this issue? Please let me know if there is a configuration > mechanism > for doing this > > > > > ------------------------------------------------------------------------------ > Simplify data backup and recovery for your virtual environment with > vRanger. > Installation's a snap, and flexible recovery options mean your data is > safe, > secure and there when you need it. Data protection magic? > Nope - It's vRanger. Get your free trial download today. > http://p.sf.net/sfu/quest-sfdev2dev > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > > > > > ------------------------------------------------------------------------------ > Simplify data backup and recovery for your virtual environment with > vRanger. > Installation's a snap, and flexible recovery options mean your data is > safe, > secure and there when you need it. Data protection magic? > Nope - It's vRanger. Get your free trial download today. > http://p.sf.net/sfu/quest-sfdev2dev > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |