Module Util.Section
Debug section
val full_name : t -> stringFull path to the section
val set_debug : t -> int -> unitDebug level for section (and its descendants)
val clear_debug : t -> unitClear debug level (will be same as parent's)
val get_debug : t -> int optionSpecific level of this section, if any
val cur_level : t -> intCurrent debug level, with parent inheritance
val iter : (string * t) Sequence.tall registered sections
val root : tDefault section, with no parent
val base : tDefault section, with no parent
Section for basic logtk things
val make : ?parent:t -> ?inheriting:t list -> string -> tmake ?parent ?inheriting namemakes a new section with the given name. It has a parent (defaultroot), used to give it a name. It can also have a list of sections it inherits from. Unless specificed explicitely otherwise (usingset_debug, the level of the section will be the max level of its parent and its inherited sections.