Enumeration LogLevel

The amount of detail that will be logged

Enumeration Members

Enumeration Members

DEBUG: 5

Enough information to debug the chain of events a given network connection encounters

ERROR: 2

Only errors

FATAL: 1

Only fatals. In practice, this will not do much, as the process will log and then crash (intentionally) if a fatal condition occurs

INFO: 4

Information about connection/stream creation/destruction events

NONE: 0

No logging whatsoever. Equivalent to never calling enable_logging.

TRACE: 6

Everything. Only use this if you really need to know EVERY single call

WARN: 3

Only warnings and errors

Generated using TypeDoc