Changes between Initial Version and Version 1 of Documentation/Logging


Ignore:
Timestamp:
Apr 7, 2011, 4:21:41 PM (13 years ago)
Author:
Christoph Mayer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Logging

    v1 v1  
     1= Logging support =
     2
     3Ariba uses an internal logging system that you are free to use. Depending on the platform, logging goes through log4cxx or directly to std::cout. The Ariba {{{configure}}} script will check for availability of log4cxx on your system and use it if available.
     4
     5All important definitions can be found in "ariba/utility/logging/Logging.h" To use logging in your application on a per-class basis, perform the following steps:
     6
     7 * Include the logging header {{{#include "ariba/utility/logging/Logging.h}}} in the header of your class where you want to use logging.
     8
     9 *  Right inside the class definition to the following:
     10
     11{{{}}}