CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2003
    Posts
    213

    Any good logging framework recommendations?

    Hi guys,

    Due to the tight deadline of my project, I am not able to evaluate the those free logging framework.

    Most of the projects that I dealt with are using ACE logger and Log4J. Currently the new project needs to run on LINUX platform and a centralised logging server is a must.

    Do you guys know of any good logging framework? I have search around and saw log4cxx, log4cpp, c++ boost logger. I am dealing with a real-time system. So performance is critical.

    My current real-time system is using ACE logger.

    Thanks for any advice

  2. #2
    Join Date
    Mar 2010
    Location
    Melbourne Australia
    Posts
    454

    Re: Any good logging framework recommendations?

    you can use Syslog server runs on linux and has ports for win32 and OS X , you can find all relevant information here

    http://www.syslog.org/

    since Syslog operates over a network , you can even do remote logging.

    best part very easy to use and has binding for many languages , you can even write your own binding by going through relevant header files.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured