my scenario is this - im using a simple logger, and have alot of log.info()/log.debug()
messages in my code.
i would like to change the log level dynamically, mainly being able to "turn on/off" debug level logs.
my question is this - is it somehow possible to do so, but make the change only affect parts of my code? lets say only when im inside methods of a specific class. or is the only way to do something like that is to use a different log object for that class and change only its level?