gui_logger

bapsf_motion.gui.configure.helpers.gui_logger = <Logger GUI (WARNING)>

Instances of the Logger class represent a single logging channel. A ā€œlogging channelā€ indicates an area of an application. Exactly how an ā€œareaā€ is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of ā€œinput processingā€ might include sub-areas ā€œread CSV filesā€, ā€œread XLS filesā€ and ā€œread Gnumeric filesā€). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be ā€œinputā€ for the upper level, and ā€œinput.csvā€, ā€œinput.xlsā€ and ā€œinput.gnuā€ for the sub-levels. There is no arbitrary limit to the depth of nesting.