From 600fa3a4b522b7f21fe2996941813f54806749fb Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Tue, 15 Aug 2023 01:32:07 -0400 Subject: [PATCH] Remove debug lines --- base/loading.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/base/loading.jl b/base/loading.jl index 62f2622703234..37c173e66e008 100644 --- a/base/loading.jl +++ b/base/loading.jl @@ -3119,7 +3119,6 @@ end f, ftime_req = chi.filename, chi.mtime if ispath(f) # `ispath(f)` is true - @debug "`ispath(f)` is true" f isfile(f) startswith(f, Sys.STDLIB) # TODO: delete this line if isfile(f) && startswith(f, Sys.STDLIB) # mtime is changed by extraction @debug "Skipping mtime check for file $f used by $cachefile, since it is a stdlib" @@ -3128,7 +3127,6 @@ end else # `ispath(f)` is false _f = fixup_stdlib_path(f) - @debug "`ispath(f)` is false" f _f isfile(_f) startswith(_f, Sys.STDLIB) # TODO: delete this line if isfile(_f) && startswith(_f, Sys.STDLIB) # mtime is changed by extraction @debug "Skipping mtime check for file $f used by $cachefile, since it is a stdlib"