Skip to content

sxdm info print requires logger set to debug

Edoardo Zatterin requested to merge sxdm-fixes into v1.10

Printing anything other than basic info during sxdm() commands requires setting the logger to a level above or equal to logging.DEBUG (i.e. =10). Printing can therefore be suppressed by adding in the BLISS session or the _setup.py file the lines:

logger = logging.getLogger("bliss.scripts.ID01_sxdm")
logger.setLevel(logging.NOTSET) # =0

see here for the numeric values of the logging levels.

Merge request reports