Uranium
Application Framework
|
Abstract base class for log output classes. More...
Public Member Functions | |
__init__ (self) | |
Create the log output. | |
log (self, str log_type, str message) | |
Log a message. | |
![]() | |
__init__ (self) | |
getPluginId (self) | |
setPluginId (self, plugin_id) | |
Protected Attributes | |
_name | |
![]() | |
_plugin_id | |
Abstract base class for log output classes.
UM.Logger.LogOutput.__init__ | ( | self | ) |
Create the log output.
This is called during the plug-in loading stage.
Reimplemented from UM.PluginObject.PluginObject.
UM.Logger.LogOutput.log | ( | self, | |
str | log_type, | ||
str | message | ||
) |
Log a message.
The possible message types are:
log_type | string A value describing the type of message. |
message | string The message to log. |
NotImplementedError |