Juno.jl
Juno.jl copied to clipboard
[BUG] Nested ProgressLogging.@progress not showing correctly
Details
- Atom version: 1.50.0
- Julia version: 1.5.2
- OS: Windows 10
- Package versions:
- Atom.jl: 1.12.30
- julia-client: 0.12.6
- ink: 0.12.5
Steps to reproduce
using ProgressLogging
using ProgressLogging: @progress
@progress "i" for i=1:4
@progress "j" for j=1:10
sleep(0.1)
end
end
The progress bar for "i"
opens, but does not update and doesn't close at the end.