Hey all
Is there a setting in JET.jl so that I only get error reported in my script. I basically want to disable the displaying of error from imported pkgs.
Cheers
Hey all
Is there a setting in JET.jl so that I only get error reported in my script. I basically want to disable the displaying of error from imported pkgs.
Cheers
Yes, this can be found in the JET documentation:
@report_call target_modules=(MyModule,) foo(...)
Note that the concept of an error occuring โin a packageโ is a little shaky, IMO. The above config removes errors eventually thrown from other modules than the ones passed in, but that does not necessarily mean that the ultimate source of the error is not in MyModule.