Enum Level

Represents log levels in increasing order of detail. See Logger

Namespace: PSPDFKitFoundation.Log
Assembly: PSPDFKitFoundation.dll
Syntax
public enum Level

Fields

Name Description
Critical

An error log message. If the current log level is set to this then only critical messages will be logged.

Debug

A debug log message. If the current log level is set to this then debug, information, warning, error and critical messages will be logged.

Error

An error log message. If the current log level is set to this then only critical and error messages will be logged.

Info

A basic information log message. If the current log level is set to this then information, warning, error and critical messages will be logged.

Trace

A trace log message. If the current log level is set to this then trace, debug, information, warning, error and critical messages will be logged.

Warn

A warning log message. If the current log level is set to this then warning, error and critical messages will be logged.