JunoLab / Juno.jl

MIT License
144 stars 23 forks source link

[BUG] Nested ProgressLogging.@progress not showing correctly #623

Open yha opened 3 years ago

yha commented 3 years ago

Details

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.