hashcode-utils-kt / org.hildan.hashcode.utils.runner / UncaughtExceptionsLogger

UncaughtExceptionsLogger

enum class UncaughtExceptionsLogger

Defines what to do with the stack traces of exceptions that are thrown during parallel tasks execution.

Enum Values

NOOP

Does nothing with the stack traces.

STDERR

Print uncaught exceptions' stack traces to the standard error stream.

SLF4J

Log exceptions via SLF4J logging API. This requires to provide an SLF4J implementation on the classpath, otherwise nothing will be printed at all.

STDERR_AND_SLF4J

Does both STDERR and SLF4J.