Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2837,7 +2837,7 @@ function __require_prelocked(pkg::PkgId, env)
m isa Module && return m

verbosity = isinteractive() ? CoreLogging.Info : CoreLogging.Debug
@logmsg verbosity "Precompiling $(repr("text/plain", pkg))$(list_reasons(reasons))"
@info "Precompiling $(repr("text/plain", pkg))$(list_reasons(reasons))"

unlock(require_lock)
try
Expand Down
2 changes: 1 addition & 1 deletion test/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,7 @@ precompile_test_harness("conflicting namespaces") do dir
try
for i = 1:2
@test readchomp(pipeline(`$exename -E $(testcode)`, stderr=fname)) == "nothing"
@test read(fname, String) == "Iterators\n"
@test endswith(read(fname, String), "Iterators\n")
end
finally
rm(fname, force=true)
Expand Down
Loading