Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/ProgressLogging.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ function Logging.handle_message(logger::MyLogger, args...; kwargs...)
# handle normal log record
end
```

Progress monitors also should define [`implementedby`](@ref).
"""
asprogress(_level, progress::Progress, _args...; _...) = progress
function asprogress(
Expand Down Expand Up @@ -506,4 +508,20 @@ function make_count_to_frac(iterators...)
return count_to_frac
end

"""
ProgressLogging.implementedby(logger::AbstractLogger) :: Bool

Check if ProgressLogging protocol is supported by `logger`.

# Implementation

A progress monitor `CustomLogger <: AbstractLogger` should define

```julia
ProgressLogging.implementedby(::CustomLogger) = true
```
"""
implementedby
implementedby(@nospecialize(logger::Logging.AbstractLogger)) = false

end # module
11 changes: 11 additions & 0 deletions test/test_misc.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module TestMisc

using ProgressLogging
using Test
using Logging

@testset "implementedby" begin
@test ProgressLogging.implementedby(NullLogger()) == false
end

end # module