LogLevelSeverity
Inherits: Enum
Represents the severity of a JavaScript log message.
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
-
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#
DEBUG = 'debug'
#
Indicates a debug message was logged using the console.debug
method.
ERROR = 'error'
#
Indicates an error message was logged via an "error" event of the
console.error
method.
INFO = 'info'
#
Indicates an informational message was logged using the console.info
method.
LOG = 'log'
#
Indicates a log message was logged using the console.log
method.
WARNING = 'warning'
#
Indicates a warning message was logged using the console.warning
method.