C++ Logging Library Setup

后端 未结 4 1115
猫巷女王i
猫巷女王i 2021-02-15 14:24

I\'ve been trying for about 2 weeks now to get a logging library to work with. I\'ve tried Log4cxx, Log4cpp, log4cplus and boost.log. The problem isn\'t that none of these wor

4条回答
  •  孤街浪徒
    2021-02-15 15:24

    I managed to get log4cxx to work, this was done in Visual Studios 2013 running on Windows 7 OS.

    This following is what I did, step by step:

    Download the log4cxx ZIP package extract its contents, http://logging.apache.org/log4cxx/download.html

    Download apr and apr-util ZIP packages, http://apr.apache.org/download.cgi

    Then

    1. manually extract this zip apr-1.2.11-win32-src.zip (the extracted folder should be named 'apr', if it is not manually rename it)
    2. manually extract this zip apr-util-1.2.10-win32-src.zip (the extracted folder should be named 'apr-util', if it is not manually rename it)
    3. open a command prompt and run the following: cd apache-log4cxx-0.10.0 configure (this will execute configure.bat)

    We will need to disable to use of the APR ICONV and LDAP support. In order to do so, we will append the following files manually:

    1. Open apr-util\include\apu.hw. Find the line starting with “#define APU_HAVE_APR_ICONV”. Change the value to 0 and save.
    2. Open apr-util\include\apr_ldap.hw. Find the line starting with “#define APR_HAS_LDAP” Change the value to 0 and save.

    We need to build the log4cxx.dll, to do so convert *.dsw to *.cxproj.

    1. Launch Visual Studio 2013 and open log4cxx.dsw.
    2. VS will ask if you like to convert everything. Simply click Yes. There may be some warnings in the migration report, but nothing that should prevent the solution from opening.

    > The projects xml, apr, and apr-util should build successfully.

    If you try compiling the log4cxx project it will most likely fail with hundreds of errors. This is due to a bug in VC++ which can be worked around.

    1. Move all macros outside (above) the class they are in. LOG4CXX_LIST_DEF macro is used to define classes. All macros reported in error C2252 will need to move out of any classes. This may also include moving definitions which are used in the macro.
    2. Next, change all LoggingEvent::KeySet to KeySet (this is no longer nested in a parent class)

    > Following this, the log4cxx project should now compile successfully on your machine.

提交回复
热议问题