# JET.jl only show problems in my script

**URL:** https://discourse.julialang.org/t/jet-jl-only-show-problems-in-my-script/93018
**Category:** Tooling
**Tags:** jet
**Created:** [January 16, 2023, 9:34am UTC](https://discourse.julialang.org/t/jet-jl-only-show-problems-in-my-script/93018 "2023-01-16T09:34:21Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Impressium](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/impressium/32/19575_2.png) [@Impressium](https://discourse.julialang.org/u/Impressium)
#### Post date: [January 16, 2023, 9:34am UTC](https://discourse.julialang.org/t/jet-jl-only-show-problems-in-my-script/93018/1 "2023-01-16T09:34:21Z")

</div>

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

---

<div class="post-metadata">

### Author: ![jakobnissen](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jakobnissen/32/13477_2.png) [@jakobnissen](https://discourse.julialang.org/u/jakobnissen)
#### Post date: [January 16, 2023, 11:59am UTC](https://discourse.julialang.org/t/jet-jl-only-show-problems-in-my-script/93018/2 "2023-01-16T11:59:38Z")

</div>

Yes, this can be found [in the JET documentation](https://aviatesk.github.io/JET.jl/stable/):

```julia
@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.
