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
When there is no SLF4J binding (e.g. Logback or slf4j-simple) available in the classpath, stack traces from Webcam.getImage() calls in WebcamPanel class are send to /dev/null since ScheduledThreadPoolExecutor does not support UncaughtExceptionHandler and pass all exceptions right back to underlying Future, but because we are passing Runnable instead of Callable we are not able to determine if exception has been thrown.
The text was updated successfully, but these errors were encountered:
When there is no SLF4J binding (e.g. Logback or slf4j-simple) available in the classpath, stack traces from
Webcam.getImage()
calls inWebcamPanel
class are send to/dev/null
sinceScheduledThreadPoolExecutor
does not supportUncaughtExceptionHandler
and pass all exceptions right back to underlyingFuture
, but because we are passingRunnable
instead ofCallable
we are not able to determine if exception has been thrown.The text was updated successfully, but these errors were encountered: