Multi diag tools
|
Helper class to log Error objects. More...
#include <Logger.h>
Inherits QObject.
Public Types |
Static Public Member Functions | |
template<typename T > | |
static T * | addBackend (ExecutionThread executionThread) |
Add a logger backend. More... | |
static void | logError (const Error &error) |
Log given error. More... | |
static void | cleanup () |
Cleanup. More... | |
Execution thread of a backend.
When adding a backend to the logger, it is possible to choose in which thread it must run.
Enumerator | |
---|---|
ExecuteInMainThread |
The backend will run in the main thread. The Qt's signal/slot is used with a auto connection, so that errors logged using logError() will allways call Backend::logError() from the main thread event loop, regardless of the caller thread. |
ExecuteInSeparateThread |
The backend will run in logger's separate thread. A call to logError() will allways just queue the error and return. The logger's separated thread will then call Backend::logError(). |
|
inlinestatic |
Add a logger backend.
A backend of type T is instanciated and added to the list of backends runing on specified executionThread . A pointer to the created backend is returned, so that some setup can be done on the backend. The logger has the ownership of the backend (it will delete it).
Accessing the backend referenced by the returned pointer is only possible:
|
static |
Cleanup.
Definition at line 36 of file Logger.cpp.
|
static |
Log given error.
This function is thread safe
Definition at line 28 of file Logger.cpp.