Hide "Precompiling AbbreviatedStackTraces" message

I have using AbbreviatedStackTraces in my startup.jl. Can I hide this message?

julia> using AbbreviatedStackTraces
[ Info: Precompiling AbbreviatedStackTraces [ac637c84-cc71-43bf-9c33-c1b4316be3d4]
[ Info: Skipping precompilation since __precompile__(false). Importing AbbreviatedStackTraces [ac637c84-cc71-43bf-9c33-c1b4316be3d4].
1 Like

I have this in my startup script:

try
    redirect_stdio(stdout=devnull, stderr=devnull) do
        @eval using AbbreviatedStackTraces
    end
catch e
    @warn "Error while importing AbbreviatedStackTraces" exception=(e, catch_backtrace())
end

1 Like