LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
The class lsstDebug can be used to turn on debugging output in a non-intrusive way. For example, the variable lsstDebug.Info
("lsst.meas.astrom.astrom").debug is used to control debugging output from the lsst.meas.astrom.astrom module.
It is always safe to interrogate lsstDebug
; for example lsstDebug.Info
("Robert.Hugh.Lupton").isBadPerson will return False.
The convention is that the name ("lsst.meas.astrom.astrom") is the __name__
of the module, so the source code will typically look something like:
which will print False
unless lsstDebug.Info(__name__)
.display has somehow been set to True
.
Why is this interesting? Because you can replace lsstDebug.Info
with your own version, e.g. if you put
into a file debug.py and
into foo.py, then
but
The command line task interface supports a flag –debug
to import debug.py from your PYTHONPATH