This a python binding to the C++ class Mantid::Kernel::Logger.
Send a message at debug priority:. Anything that may be useful to understand what the code has been doing for debugging purposes.
Send a message at error priority: An error has occured but the framework is able to handle it and continue
Send a message at fatal priority: An unrecoverable error has occured and the application will terminate
Creates the named logger. This method is static, call as Logger.get(‘logger_name’). The name is used as a prefix within the log file so that msg origins can be traced more easily.
Send a message at information priority: Useful but not vital information to be relayed back to the user.
Sends a message at notice priority: Really important information that should be displayed to the user, this should be minimal. The default logging level is set here unless it is altered.
Send a message at warning priority: Something was wrong but the framework was able to continue despite the problem.