Skip to main content

LogLevelSeverity

Represents the severity of a JavaScript log message.

Inherits: enum.Enum

Properties

  • DEBUG - Indicates a debug message was logged using the console.debug method.
  • ERROR - Indicates an error message was logged via an "error" event of the console.error method.
  • INFO - Indicates an informational message was logged using the console.info method.
  • LOG - Indicates a log message was logged using the console.log method.
  • WARNING - Indicates a warning message was logged using the console.warning method.

Properties

DEBUGclass-attributeinstance-attribute

Indicates a debug message was logged using the console.debug method.

ERRORclass-attributeinstance-attribute

Indicates an error message was logged via an "error" event of the console.error method.

INFOclass-attributeinstance-attribute

Indicates an informational message was logged using the console.info method.

LOGclass-attributeinstance-attribute

Indicates a log message was logged using the console.log method.

WARNINGclass-attributeinstance-attribute

Indicates a warning message was logged using the console.warning method.