ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkLoggerBase.h>
Used for logging information during a run.
Definition at line 37 of file itkLoggerBase.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef MultipleLogOutput::OutputType | OutputType |
typedef SmartPointer< Self > | Pointer |
enum | PriorityLevelType { MUSTFLUSH = 0, FATAL, CRITICAL, WARNING, INFO, DEBUG, NOTSET } |
typedef LoggerBase | Self |
typedef Object | Superclass |
enum | TimeStampFormatType { REALVALUE = 0, HUMANREADABLE } |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Public Member Functions | |
virtual void | AddLogOutput (OutputType *output) |
virtual std::string | BuildFormattedEntry (PriorityLevelType level, std::string const &content) |
void | Critical (std::string const &message) |
void | Debug (std::string const &message) |
void | Error (std::string const &message) |
void | Fatal (std::string const &message) |
virtual void | Flush () |
virtual PriorityLevelType | GetLevelForFlushing () const |
virtual const char * | GetName () const |
virtual const char * | GetNameOfClass () const |
virtual PriorityLevelType | GetPriorityLevel () const |
void | Info (std::string const &message) |
virtual void | SetLevelForFlushing (PriorityLevelType level) |
virtual void | SetName (const char *_arg) |
virtual void | SetPriorityLevel (PriorityLevelType level) |
void | Warning (std::string const &message) |
virtual void | Write (PriorityLevelType level, std::string const &content) |
virtual void | SetTimeStampFormat (TimeStampFormatType _arg) |
virtual const TimeStampFormatType & | GetTimeStampFormat () |
virtual void | SetHumanReadableFormat (const char *_arg) |
virtual const char * | GetHumanReadableFormat () const |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
virtual LightObject::Pointer | CreateAnother () const |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary (void) |
const MetaDataDictionary & | GetMetaDataDictionary (void) const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () const |
bool | HasObserver (const EventObject &event) const |
void | InvokeEvent (const EventObject &) |
void | InvokeEvent (const EventObject &) const |
virtual void | Modified () const |
virtual void | Register () const |
void | RemoveAllObservers () |
void | RemoveObserver (unsigned long tag) |
void | SetDebug (bool debugFlag) const |
void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
virtual void | SetReferenceCount (int) |
virtual void | UnRegister () const |
Public Member Functions inherited from itk::LightObject | |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
itkCloneMacro (Self) | |
void | Print (std::ostream &os, Indent indent=0) const |
Protected Member Functions | |
LoggerBase () | |
virtual void | PrintSelf (std::ostream &os, Indent indent) const |
virtual | ~LoggerBase () |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &time) |
virtual | ~Object () |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Private Attributes | |
std::string | m_Name |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
typedef SmartPointer< const Self > itk::LoggerBase::ConstPointer |
Definition at line 44 of file itkLoggerBase.h.
Definition at line 47 of file itkLoggerBase.h.
typedef SmartPointer< Self > itk::LoggerBase::Pointer |
Definition at line 43 of file itkLoggerBase.h.
typedef LoggerBase itk::LoggerBase::Self |
Definition at line 41 of file itkLoggerBase.h.
typedef Object itk::LoggerBase::Superclass |
Definition at line 42 of file itkLoggerBase.h.
Definition of types of messages. These codes will be used to regulate the level of detail of messages reported to the final outputs
Definition at line 53 of file itkLoggerBase.h.
Select the type of format for reporting time stamps
Definition at line 67 of file itkLoggerBase.h.
|
protected |
Constructor
|
protectedvirtual |
Destructor
|
virtual |
Registers another output stream with the multiple output.
Reimplemented in itk::ThreadLogger.
|
virtual |
Provides a default formatted log entry
|
inline |
Definition at line 148 of file itkLoggerBase.h.
References CRITICAL.
|
inline |
|
inline |
Definition at line 153 of file itkLoggerBase.h.
References CRITICAL.
|
inline |
Definition at line 158 of file itkLoggerBase.h.
References FATAL.
|
virtual |
Reimplemented in itk::ThreadLogger.
|
virtual |
Set/Get the specific text format to use when the time stamp format type is set to HUMANREADABLE. For a description of the acceptable formats please look at the man page of the strftime() method. The default is set to "%Y %b %d %H:%M:%S"
|
inlinevirtual |
Reimplemented in itk::ThreadLogger.
Definition at line 122 of file itkLoggerBase.h.
|
virtual |
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
|
inlinevirtual |
Get the priority level for the current logger. Only messages that have priorities equal or greater than the one set here will be posted to the current outputs
Reimplemented in itk::ThreadLogger.
Definition at line 112 of file itkLoggerBase.h.
|
virtual |
Set/Get the type of format used for reporting the time stamp of a given log message. The main options are REALVALUE and HUMANREADABLE. REALVALUE will report the time in seconds as a double number. HUMANREADABLE will report the time in formatted text such as '2007 May 7 09:23:14'
|
inline |
Definition at line 138 of file itkLoggerBase.h.
References INFO.
|
protectedvirtual |
|
virtual |
Set/Get the specific text format to use when the time stamp format type is set to HUMANREADABLE. For a description of the acceptable formats please look at the man page of the strftime() method. The default is set to "%Y %b %d %H:%M:%S"
|
inlinevirtual |
Reimplemented in itk::ThreadLogger.
Definition at line 117 of file itkLoggerBase.h.
|
virtual |
|
inlinevirtual |
Set the priority level for the current logger. Only messages that have priorities equal or greater than the one set here will be posted to the current outputs
Reimplemented in itk::ThreadLogger.
Definition at line 104 of file itkLoggerBase.h.
|
virtual |
Set/Get the type of format used for reporting the time stamp of a given log message. The main options are REALVALUE and HUMANREADABLE. REALVALUE will report the time in seconds as a double number. HUMANREADABLE will report the time in formatted text such as '2007 May 7 09:23:14'
|
inline |
Definition at line 143 of file itkLoggerBase.h.
References WARNING.
|
virtual |
Reimplemented in itk::ThreadLogger.
|
protected |
Definition at line 184 of file itkLoggerBase.h.
|
protected |
Definition at line 188 of file itkLoggerBase.h.
|
protected |
Definition at line 180 of file itkLoggerBase.h.
|
private |
Definition at line 192 of file itkLoggerBase.h.
|
protected |
Definition at line 182 of file itkLoggerBase.h.
|
protected |
Definition at line 178 of file itkLoggerBase.h.
|
protected |
Definition at line 186 of file itkLoggerBase.h.