7.3. pyopus.misc.debug — Debug message generation and output
Debug message generation module
Every PyOPUS module generates debug messages of the form
locationID subsystem: bodyText.
locationID uniquely identifies a Python process on a host.
See pyopus.misc.id for details.
subsystem is a string identifying the PyOPUS subsystem that generated the
message.
-
pyopus.misc.debug.DbgMsg(subsystem, text)
- Generates a debug message with text in its body. The message originates
from the given PyOPUS subsystem.
-
pyopus.misc.debug.DbgMsgOut(subsystem, text)
- Generates and prints on stdout a debug message with text in its body.
The message originates from the given PyOPUS subsystem.