This is an issue related to #16213
The logging function does not have any effect when used from .juliarc.jl
For example, in my case I needed to overwrite the Base.show_delim_array method so I used
logging(DevNull,Base,:show_delim_array;kind=:warn)
as explained on discourse
Using this in the REPL after julia has loaded is no problem, but it does not work from .juliarc.jl and the warnings are still displayed anyway.
This is an issue related to #16213
The
loggingfunction does not have any effect when used from.juliarc.jlFor example, in my case I needed to overwrite the
Base.show_delim_arraymethod so I usedas explained on discourse
Using this in the REPL after julia has loaded is no problem, but it does not work from
.juliarc.jland the warnings are still displayed anyway.