Go to the source code of this file.
◆ otbAppLogCRITICAL
#define otbAppLogCRITICAL |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "" x << std::endl; \
this->GetLogger()->Write(itk::LoggerBase::CRITICAL, msg.str()); \
}
Definition at line 38 of file otbWrapperMacros.h.
◆ otbAppLogDEBUG
#define otbAppLogDEBUG |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "" x << std::endl; \
this->GetLogger()->Write(itk::LoggerBase::DEBUG, msg.str()); \
}
Definition at line 59 of file otbWrapperMacros.h.
◆ otbAppLogFATAL
#define otbAppLogFATAL |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "" x << std::endl; \
this->GetLogger()->Fatal(msg.str()); \
{ \
std::ostringstream message; \
message << "otb::ApplicationException " x; \
throw e_; \
} \
}
Exception for runtime errors in OTB Applications.
Definition at line 25 of file otbWrapperMacros.h.
◆ otbAppLogINFO
#define otbAppLogINFO |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "" x << std::endl; \
this->GetLogger()->Write(itk::LoggerBase::INFO, msg.str()); \
}
Definition at line 52 of file otbWrapperMacros.h.
◆ otbAppLogWARNING
#define otbAppLogWARNING |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "" x << std::endl; \
this->GetLogger()->Write(itk::LoggerBase::WARNING, msg.str()); \
}
Definition at line 45 of file otbWrapperMacros.h.