IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PyIPSDKIPLColorLog.h
Go to the documentation of this file.
1 // PyIPSDKIPLColorLog.h:
3 // ---------------------
4 //
14 
15 #ifndef __PYIPSDKIPLCOLOR_PYIPSDKIPLCOLORLOG_H__
16 #define __PYIPSDKIPLCOLOR_PYIPSDKIPLCOLORLOG_H__
17 
19 #include <Python/PyIPSDKIPLColor/Logger/PyIPSDKIPLColorException.h>
21 
24 
25 namespace ipsdk {
26 namespace color {
27 
30 
33 
37 
38 } // end of namespace color
39 } // end of namespace ipsdk
40 
42 //
48 
51 #define PYIPSDKIPLCOLOR_LOG_TRACE(msg) \
52  IPSDK_LOG_TRACE(PyIPSDKIPLColor, msg);
53 
56 #define PYIPSDKIPLCOLOR_LOG_DEBUG(msg) \
57  IPSDK_LOG_DEBUG(PyIPSDKIPLColor, msg);
58 
61 #define PYIPSDKIPLCOLOR_LOG_INFO(msg) \
62  IPSDK_LOG_INFO(PyIPSDKIPLColor, msg);
63 
66 #define PYIPSDKIPLCOLOR_LOG_WARN(msg) \
67  IPSDK_LOG_WARN(PyIPSDKIPLColor, msg);
68 
71 #define PYIPSDKIPLCOLOR_LOG_ERROR(msg) \
72  IPSDK_LOG_ERROR(PyIPSDKIPLColor, msg);
73 
75 
77 //
81 //
83 
86 #define PYIPSDKIPLCOLOR_THROW(msg) \
87  IPSDK_THROW(PyIPSDKIPLColor, msg);
88 
92 #define PYIPSDKIPLCOLOR_RETHROW(msg, previousException) \
93  IPSDK_RETHROW(PyIPSDKIPLColor, msg, previousException);
94 
98 #define PYIPSDKIPLCOLOR_CHECK(bPredicate, msg) \
99  IPSDK_CHECK(PyIPSDKIPLColor, bPredicate, msg);
100 
102 
105 
106 #endif // __PYIPSDKIPLCOLOR_PYIPSDKIPLCOLORLOG_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Log messages description.
#define PYIPSDKIPLCOLOR_API
Import/Export macro for library PyIPSDKIPLColor.
Definition: PyIPSDKIPLColorExports.h:25
PYIPSDKIPLCOLOR_API const std::string & getPyIPSDKIPLColorLoggerName()
Recovery of logger name associated to library.
PYIPSDKIPLCOLOR_API const ipsdk::LogMessageManager & getPyIPSDKIPLColorLogMessageManager()
Recovery of message manager associated to library.
Base Logger for IPSDK library.
PYIPSDKIPLCOLOR_API log4cplus::Logger & getPyIPSDKIPLColorLogger()
Recovery of logger associated to library.
Log message manager for ipsdk libraries.
Definition: LogMessageManager.h:44