DefaultLogHandler Class Reference

Inheritance diagram for DefaultLogHandler:

XmlRpc::XmlRpcLogHandler

List of all members.

Public Member Functions

void log (int level, const char *msg)
 Output a message. Custom error handlers should define this method.


Member Function Documentation

void DefaultLogHandler::log ( int  level,
const char *  msg 
) [inline, virtual]

Output a message. Custom error handlers should define this method.

Implements XmlRpc::XmlRpcLogHandler.

00033                                        { 
00034 #ifdef USE_WINDOWS_DEBUG
00035     if (level <= _verbosity) { OutputDebugString(msg); OutputDebugString("\n"); }
00036 #else
00037     if (level <= _verbosity) std::cout << msg << std::endl; 
00038 #endif  
00039   }


The documentation for this class was generated from the following file:
Generated on Thu Apr 17 13:19:28 2008 for ITM OverSim by  doxygen 1.5.3