The “JULIA_DEBUG” environment variable allows you pick modules you wish to display debug info from. For example, if you are working from the Main
module, you can enable @debug
logs specifically for Main
like so:
ENV["JULIA_DEBUG"] = Main
Here’s a link to a relevant section in the docs: Logging · The Julia Language