enum

Asciidoctor::Severity

Inherits Enum < Comparable < Value < Object

Severity levels matching Ruby's Logger severity constants.

Constants

DEBUG = 0
INFO = 1
WARN = 2
ERROR = 3
FATAL = 4
UNKNOWN = 5

Instance methods

debug?

Returns true if this enum value equals DEBUG

Source
error?

Returns true if this enum value equals ERROR

Source
fatal?

Returns true if this enum value equals FATAL

Source
info?

Returns true if this enum value equals INFO

Source
unknown?

Returns true if this enum value equals UNKNOWN

Source
warn?

Returns true if this enum value equals WARN

Source