LogLevelSeverity
Represents the severity of a JavaScript log message.
Inherits: enum.Enum
Properties
DEBUG- Indicates a debug message was logged using theconsole.debugmethod.ERROR- Indicates an error message was logged via an "error" event of theconsole.errormethod.INFO- Indicates an informational message was logged using theconsole.infomethod.LOG- Indicates a log message was logged using theconsole.logmethod.WARNING- Indicates a warning message was logged using theconsole.warningmethod.
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.