JuliaLogging / ProgressLogging.jl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ProgressLogging: a package for defining progress logs

Stable Dev Build Status Codecov Coveralls

ProgressLogging.jl is a package for defining progress logs. It can be used to report progress of a loop/loops with time-consuming body:

julia> using ProgressLogging

julia> @progress for i in 1:10
           sleep(0.1)
       end

This package does not contain any progress monitors for visualizing the progress of the program. You need to install a package supporting progress logs created by ProgressLogging.jl API. For example:

About

License:MIT License


Languages

Language:Julia 100.0%