Info, Warning, Error, Fatal, ... Debug?

I can’t find a good way to print debug informations. I want something that I can disable or enable very quickly. I found Info, Warning, … functions, but I can’t find Debug, and I can’t find a way to set the defaul minimum level.

I’m used with python logging or boost-log

Hi,

see root.cern.ch/phpBB2/viewtopic.php?t=8787 You could e.g. use kInfo. The problem with that is that gErrorIgnoreLevel is for all of ROOT. We were considering introducing a library / class specific verbosity setting once but never implemented it. I.e. if gErrorIgnoreLevel is not good enough then you might want to either implement your own or use the one from boost (as you’re already used to it).

Cheers, Axel.