Skip to content

Commit a0e1c6f

Browse files
committed
progress logging
1 parent 375a593 commit a0e1c6f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/patch/cst.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ end
168168

169169
function sourcemap_dir(f, path)
170170
for (dir, _, fs) in walkdir(path), file in fs
171-
endswith(file, ".jl") && sourcemap(f, joinpath(dir, file))
171+
if endswith(file, ".jl")
172+
@info "SourceWalk: processing $file"
173+
sourcemap(f, joinpath(dir, file))
174+
end
172175
end
173176
end
174177

0 commit comments

Comments
 (0)