MessageLevel

Enumeration of available message levels.

The library's internal parsers and AST transformation only use the Error level for recoverable issues encountered during transformations. All other levels are available for user code.

Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case object Debug extends MessageLevel

Debug level that is not used by the library itself, but may be used by application code for debugging purposes.

Debug level that is not used by the library itself, but may be used by application code for debugging purposes.

case object Error extends MessageLevel

An error that is confined to a single AST node or range of nodes, but most likely with surrounding areas unaffected. An example is an internal link that remained unresolved.

An error that is confined to a single AST node or range of nodes, but most likely with surrounding areas unaffected. An example is an internal link that remained unresolved.

case object Fatal extends MessageLevel

A critical issue that might affect the integrity of the entire output beyond just the node where it occurred. An example is a configuration header with parsing errors in a markup document that might affect other markup content that would then unexpectedly fall back to defaults.

A critical issue that might affect the integrity of the entire output beyond just the node where it occurred. An example is a configuration header with parsing errors in a markup document that might affect other markup content that would then unexpectedly fall back to defaults.

case object Info extends MessageLevel

Info level that is not used by the library itself, but may be used by application code for debugging purposes.

Info level that is not used by the library itself, but may be used by application code for debugging purposes.

case object Warning extends MessageLevel

An issue that hints at a potential problem, but in the library's default settings it won't cause the transformation to fail.

An issue that hints at a potential problem, but in the library's default settings it won't cause the transformation to fail.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror