From 91e91ac82199dd513f71857e7c1706a5677a72ad Mon Sep 17 00:00:00 2001 From: t-bltg <13423344+t-bltg@users.noreply.github.com> Date: Wed, 7 Jul 2021 00:45:53 +0200 Subject: [PATCH] Reduce number of warnings on invalid log values --- src/utils.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.jl b/src/utils.jl index e8daeada..4ebdc01e 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -91,6 +91,7 @@ function series_segments(series::Series, seriestype::Symbol=:path; check=false) if v <= 0 @warn "Invalid negative or zero value $v found at series index $i for $(scale) based $(scales[n])" @debug "" exception=(DomainError(v), stacktrace()) + break end end end