LogLevelSeverity
        Inherits: Enum
Represents the severity of a JavaScript log message.
Properties
- 
          DEBUG–Indicates a debug message was logged using the console.debugmethod.
- 
          ERROR–Indicates an error message was logged via an "error" event of the 
- 
          INFO–Indicates an informational message was logged using the console.infomethod.
- 
          LOG–Indicates a log message was logged using the console.logmethod.
- 
          WARNING–Indicates a warning message was logged using the console.warningmethod.
Properties#
DEBUG = 'debug'
  
      class-attribute
      instance-attribute
  
#
    Indicates a debug message was logged using the console.debug method.
ERROR = 'error'
  
      class-attribute
      instance-attribute
  
#
    Indicates an error message was logged via an "error" event of the
console.error method.
INFO = 'info'
  
      class-attribute
      instance-attribute
  
#
    Indicates an informational message was logged using the console.info method.
LOG = 'log'
  
      class-attribute
      instance-attribute
  
#
    Indicates a log message was logged using the console.log method.
WARNING = 'warning'
  
      class-attribute
      instance-attribute
  
#
    Indicates a warning message was logged using the console.warning method.