LogLevelSeverity
LogLevelSeverity
#
Bases: Enum
Represents the severity of a JavaScript log message.
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.