Available log levels for the Chat SDK. The log levels are hierarchical i.e. when a particular level is set then the SDK will not log below that level.

Verbosity decreases as we go from top to bottom:

  • DEBUG
  • INFO
  • WARN
  • ERROR
  • OFF

Enumeration Members

Enumeration Members

DEBUG: "DEBUG"

DEBUG is the most verbose log level being more verbose than the INFO level. At this level the SDK will log all the details.

ERROR: "ERROR"

ERROR is more verbose than the OFF level. At this level the SDK will only log errors. This is also the default logging level of the SDK.

INFO: "INFO"

INFO is more verbose than the WARN level. At this level the SDK will log errors, warnings and info level details.

OFF: "OFF"

OFF is the least verbose level. At this level the SDK doesn't log anything.

WARN: "WARN"

WARN is more verbose than the ERROR level. At this level the SDK will log errors and warnings.