Developer Documentation
|
#include <OpenFlipper/Logging/PluginLogging.hh>
Signals | |
void | log (Logtype, QString) |
Sends the generated logs to the core. | |
Public Member Functions | |
PluginLogger (QString _pluginName, Logtype _type=LOGOUT) | |
Standard Constructor. More... | |
~PluginLogger () | |
Destructor. | |
void | operator<< (const std::string &_s) |
Provide operator for streaming. More... | |
Private Slots | |
void | slotLog (Logtype _type, QString _message) |
Log messages with a given Logtype. More... | |
void | slotLog (QString _message) |
Wrapper which logs at LOGOUT Logtype by default. More... | |
Private Attributes | |
QString | pluginName_ |
prepend this name to all output messages | |
Logtype | defaultLogType_ |
Default logtype ( used for streams ) | |
A wrapper class, getting events from an plugin, prepending plugin name to the log and passing it to the core. This class is generated for every plugin of the core. It also does some cleanup of the passed strings.
Definition at line 73 of file PluginLogging.hh.
Standard Constructor.
_pluginName | Name of the Plugin which uses this logger (Prepended to all Output) |
_type | Default log type ( used for streaming operations ) |
Definition at line 66 of file PluginLogging.cc.
void PluginLogger::operator<< | ( | const std::string & | _s | ) |
Provide operator for streaming.
This operator is used for streaming ( e.g. catch omerr and omerr streams) and redirect them to the logging widget. The default log level passed to the constructor will be used for the message
_s | String to display |
Definition at line 103 of file PluginLogging.cc.
|
privateslot |
Log messages with a given Logtype.
Receive log events from plugins and pass them to core
_type | Logtype (defines the color of the output) |
_message | The message for output |
Definition at line 79 of file PluginLogging.cc.
|
privateslot |
Wrapper which logs at LOGOUT Logtype by default.
Receive log events from plugins (defaults to LOGOUT Message type)
_message | The message for output |
Definition at line 90 of file PluginLogging.cc.