spinetoolbox.logger_interface¶
A logger interface.
| authors: |
|
|---|---|
| date: | 16.1.2020 |
Module Contents¶
Classes¶
LoggerInterface |
Placeholder for signals that can be emitted to send messages to an output device. |
-
class
spinetoolbox.logger_interface.LoggerInterface[source]¶ Bases:
PySide2.QtCore.QObjectPlaceholder for signals that can be emitted to send messages to an output device.
The signals should be connected to a concrete logging system.
Currently, this is just a ‘model interface’. ToolboxUI contains the same signals so it can be used as a drop-in replacement for this class.
-
msg_proc[source]¶ Emits a message originating from a subprocess (usually something printed to stdout).
-
msg_proc_error[source]¶ Emits an error message originating from a subprocess (usually something printed to stderr).
-