Hi. I can understand how to control the logger level for a function and a global scope with this post:
Is it possible to control logger level for a module?
I would like to set different logger levels on each module.
Hi. I can understand how to control the logger level for a function and a global scope with this post:
Is it possible to control logger level for a module?
I would like to set different logger levels on each module.
It wasn’t mentioned clearly there, but it’s referenced in the manual, the ENV variable “JULIA_DEBUG” can be set to a comma-separate string of the module or file names to force-enable printing of debug messages for anything that matches that filter
Thank you!!. This helps me a lot.