You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we use -fdebug but don't set DEBUG env variable(for debug level) or set it to 0, maxLvl is set to 0 in Control.LVish.SchedIdempotentInternal.new, and it doesn't create a logger since no logging should be done with that level. However, other parts of the library assumes that if -fdebug is used, that we have a logger in use and they do non-exhaustive pattern matching on the logger. (example: Internal.Control.LVish.SchedIdempotent.logStrLn)
This is causing runtime crashes and should be fixed.
The text was updated successfully, but these errors were encountered:
If we use
-fdebug
but don't setDEBUG
env variable(for debug level) or set it to0
,maxLvl
is set to0
inControl.LVish.SchedIdempotentInternal.new
, and it doesn't create a logger since no logging should be done with that level. However, other parts of the library assumes that if-fdebug
is used, that we have a logger in use and they do non-exhaustive pattern matching on the logger. (example:Internal.Control.LVish.SchedIdempotent.logStrLn
)This is causing runtime crashes and should be fixed.
The text was updated successfully, but these errors were encountered: