IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Namespaces | Functions
IPSDKCoreLog.h File Reference

Logger api for library IPSDKCore. More...

#include <IPSDKUtil/Logger/BaseLog.h>
#include <IPSDKCore/Logger/IPSDKCoreException.h>
#include <IPSDKCore/Logger/IPSDKCoreLogMessages.h>

Go to the source code of this file.

Namespaces

 ipsdk
 Main namespace for IPSDK library.
 
 ipsdk::core
 Namespace agregating IPSDK core execution routines and classes.
 

Macros

Logs

Macros enabling loggin management for library IPSDKCore.

#define IPSDKCORE_LOG_TRACE(msg)   IPSDK_LOG_TRACE(IPSDKCore, msg);
 Logging of message msg with trace log level.
 
#define IPSDKCORE_LOG_DEBUG(msg)   IPSDK_LOG_DEBUG(IPSDKCore, msg);
 Logging of message msg with debug log level.
 
#define IPSDKCORE_LOG_INFO(msg)   IPSDK_LOG_INFO(IPSDKCore, msg);
 Logging of message msg with info log level.
 
#define IPSDKCORE_LOG_WARN(msg)   IPSDK_LOG_WARN(IPSDKCore, msg);
 Logging of message msg with warn log level.
 
#define IPSDKCORE_LOG_ERROR(msg)   IPSDK_LOG_ERROR(IPSDKCore, msg);
 Logging of message msg with error log level.
 
Exceptions

Macros enabling exception management for library IPSDKCore.

#define IPSDKCORE_THROW(msg)   IPSDK_THROW(IPSDKCore, msg);
 Unconditional exception thrown with logging of msg value.
 
#define IPSDKCORE_RETHROW(msg, previousException)   IPSDK_RETHROW(IPSDKCore, msg, previousException);
 Unconditional exception rethrown from previousException with logging of msg value.
 
#define IPSDKCORE_CHECK(bPredicate, msg)   IPSDK_CHECK(IPSDKCore, bPredicate, msg);
 Check of predicate bPredicate with exception thrown with logging of msg value in case of failure.
 

Functions

IPSDKCORE_API const std::string & ipsdk::core::getIPSDKCoreLoggerName ()
 Recovery of logger name associated to library.
 
IPSDKCORE_API log4cplus::Logger & ipsdk::core::getIPSDKCoreLogger ()
 Recovery of logger associated to library.
 
IPSDKCORE_API const LogMessageManager & ipsdk::core::getIPSDKCoreLogMessageManager ()
 Recovery of message manager associated to library.
 

Detailed Description

Logger api for library IPSDKCore.

Author
E. Noirfalise
Date
2013/3/27 - 12:8:44