debug.register("CERR", "Various ClassifierErrors")
// Lets check if environment can tell us smth
if environ.has_key("MVPA_DEBUG"):
debug.setActiveFromString(environ["MVPA_DEBUG"])
// Lets check if environment can tell us smth
After Change
debug.setActiveFromString(cfg.get("general", "debug"))
// Lets check if environment can tell us smth
if cfg.has_option("debug", "metrics"):
debug.registerMetric(cfg.get("debug", "metric").split(","))