Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
mbilog backend implementation for mitk More...
#include <mitkLog.h>
Public Member Functions | |
void | ProcessMessage (const mbilog::LogMessage &) override |
overloaded method for receiving log message from mbilog More... | |
virtual mbilog::OutputType | GetOutputType () const override |
Public Member Functions inherited from mbilog::TextBackendBase | |
virtual | ~TextBackendBase () |
Public Member Functions inherited from mbilog::BackendBase | |
virtual | ~BackendBase () |
Static Public Member Functions | |
static void | Register () |
registers MITK logging backend at mbilog More... | |
static void | Unregister () |
Unregisters MITK logging backend at mbilog. More... | |
static void | SetLogFile (const char *file) |
Sets extra log file path (additionally to the console log) More... | |
static void | RotateLogFiles (const std::string &prefixPath) |
Activates and handles a rolling log file with the given prefix and path. This method handles 10 log files with a given prefix, e.g. "myLogFile". The 10 log files will then look like this: myLogFile-0.log (current file) myLogFile-1.log (last file) myLogFile-2.log [...] myLogFile-9.log. More... | |
static std::string | IncrementLogFileNames (const std::string &prefixPath, int numLogFiles=10) |
Increments the names of logfiles with the given prefixPath. This means, if the prefixPath is "myLogFile" myLogFile-0.log is renamed to myLogFile-1.log, myLogFile-1.log to myLogFile-2.log, and so on. The oldest logfile is deleted. The number of log files is defined by the parameter "numLogFiles". The first logfile name is "free" (e.g., [prefix]-0.log) again. This name is retured. More... | |
static std::string | GetLogFile () |
static void | EnableAdditionalConsoleWindow (bool enable) |
Enables an additional logging output window by means of itk::outputwindow This might be relevant for showing log output in applications with no default output console. More... | |
static void | CatchLogFileCommandLineParameter (int &argc, char **argv) |
Automatically extracts and removes the "--logfile <file>" parameters from the standard C main(argc,argv) parameter list and calls SetLogFile if needed. More... | |
Static Protected Member Functions | |
static bool | CheckIfFileExists (const std::string &filename) |
Additional Inherited Members | |
Protected Member Functions inherited from mbilog::TextBackendBase | |
void | FormatSmart (const LogMessage &l, int threadID=0) |
Method formats the given LogMessage in the smart/short format and writes it to std::cout. More... | |
void | FormatFull (const LogMessage &l, int threadID=0) |
Method formats the given LogMessage in the full/long format and writes it to std::cout. More... | |
void | FormatSmart (std::ostream &out, const LogMessage &l, int threadID=0) |
Method formats the given LogMessage in the smart/short format and writes it to the given std::ostream. More... | |
void | FormatFull (std::ostream &out, const LogMessage &l, int threadID=0) |
Method formats the given LogMessage in the full/long format and writes it to the given std::ostream. More... | |
void | AppendTimeStamp (std::ostream &out) |
Writes the system time to the given stream. More... | |
void | FormatSmartWindows (const mbilog::LogMessage &l, int) |
Special variant of method FormatSmart which uses colored messages (only for windows). More... | |
|
static |
Automatically extracts and removes the "--logfile <file>" parameters from the standard C main(argc,argv) parameter list and calls SetLogFile if needed.
Definition at line 150 of file mitkLog.cpp.
References MITK_ERROR, and SetLogFile().
|
staticprotected |
Checks if a file exists.
Definition at line 234 of file mitkLog.cpp.
References File.
|
static |
Enables an additional logging output window by means of itk::outputwindow This might be relevant for showing log output in applications with no default output console.
Definition at line 35 of file mitkLog.cpp.
References logOutputWindow.
|
static |
Definition at line 145 of file mitkLog.cpp.
References logFileName.
|
overridevirtual |
Implements mbilog::BackendBase.
Definition at line 250 of file mitkLog.cpp.
References Console.
|
static |
Increments the names of logfiles with the given prefixPath. This means, if the prefixPath is "myLogFile" myLogFile-0.log is renamed to myLogFile-1.log, myLogFile-1.log to myLogFile-2.log, and so on. The oldest logfile is deleted. The number of log files is defined by the parameter "numLogFiles". The first logfile name is "free" (e.g., [prefix]-0.log) again. This name is retured.
prefixPath | Should hold the prefix of the logfile together with its path. E.g., "C:/programs/mitk/myLogFile". |
numLogFiles | Sets the number of logfiles. Default value is 10. This means logfiles from [prefix]-0.log to [prefix]-1.log are stored. |
mitk::Exception | Throws an exception if there is a problem with renaming the logfiles, e.g., because of file access problems. |
Definition at line 188 of file mitkLog.cpp.
References mitkThrow.
|
overridevirtual |
overloaded method for receiving log message from mbilog
Implements mbilog::TextBackendBase.
Definition at line 40 of file mitkLog.cpp.
References logFile, logMutex, logOutputWindow, and outputWindow.
|
static |
registers MITK logging backend at mbilog
Definition at line 75 of file mitkLog.cpp.
References mbilog::RegisterBackend().
|
static |
Activates and handles a rolling log file with the given prefix and path. This method handles 10 log files with a given prefix, e.g. "myLogFile". The 10 log files will then look like this: myLogFile-0.log (current file) myLogFile-1.log (last file) myLogFile-2.log [...] myLogFile-9.log.
Everytime this method this called, normally when MITK is started, then all log files are copied one file below (0 to 1, 1 to 2, and so on). The oldes logfile (number 9) is always deleted. So users have access to the log files of the last 10 runs.
mitk::Exception | Throws an exception if there is a problem with renaming the logfiles, e.g., because of file access problems. |
prefixPath | Should hold the prefix of the logfile together with its path. E.g., "C:/programs/mitk/myLogFile". |
Definition at line 176 of file mitkLog.cpp.
References SetLogFile().
|
static |
Sets extra log file path (additionally to the console log)
Definition at line 94 of file mitkLog.cpp.
References logFile, logFileName, logMutex, MITK_INFO, and MITK_WARN.
Referenced by CatchLogFileCommandLineParameter(), RotateLogFiles(), and TestThreadSaveLog().
|
static |
Unregisters MITK logging backend at mbilog.
Definition at line 83 of file mitkLog.cpp.
References mitkLogBackend, and mbilog::UnregisterBackend().