Uranium
Application Framework
|
Abstract base class for log output classes. More...
Public Member Functions | |
def | __init__ (self) |
Create the log output. More... | |
def | log (self, str log_type, str message) |
Log a message. More... | |
![]() | |
def | getPluginId (self) |
def | setPluginId (self, plugin_id) |
def | setVersion (self, str version) |
str | getVersion (self) |
Abstract base class for log output classes.
def UM.Logger.LogOutput.__init__ | ( | self | ) |
Create the log output.
This is called during the plug-in loading stage.
Reimplemented from UM.PluginObject.PluginObject.
def 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 |