JET.jl only show problems in my script

Hey all :slight_smile:

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

2 Likes

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.

1 Like