Skip to content

Commit 92cb6b8

Browse files
authored
avoid duplicated logs from get_def (#924)
1 parent 2911b1e commit 92cb6b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packagedef.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ function get_def(method::Method; modified_files=revision_queue)
10881088
# Lookup can fail for macro-defined methods, see https://github.com/JuliaLang/julia/issues/31197
10891089
# We need to find the right file.
10901090
if method.module == Base || method.module == Core || method.module == Core.Compiler
1091-
@warn "skipping $method to avoid parsing too much code"
1091+
@warn "skipping $method to avoid parsing too much code" maxlog=1 _id=method
10921092
CodeTracking.invoked_setindex!(CodeTracking.method_info, method.sig, missing)
10931093
return false
10941094
end

0 commit comments

Comments
 (0)