Agora Interactive Whiteboard Java API Reference
Public Attributes | List of all members
com.herewhite.sdk.domain.LoggerOptions.Level Enum Reference

Public Attributes

 debug
 
 info
 
 warn
 
 error
 

Detailed Description

The output log level.

Since
2.11.10

The log level follows the sequence of error, warn, info, and debug. When choosing a level, you can also see the logs preceding that level.

For example, if you set the log level to info, the SDK outputs the logs within levels errorwarn,and info.

Member Data Documentation

◆ debug

com.herewhite.sdk.domain.LoggerOptions.Level.debug

Logs of the debug level.

Set your log level as debug if you want to get the most complete log file.

Note
At present, logs at the debug level have the same information as those at the info level.

◆ info

com.herewhite.sdk.domain.LoggerOptions.Level.info

Logs of the info level.

Logs at this level mainly provide information on SDK connection states.

◆ warn

com.herewhite.sdk.domain.LoggerOptions.Level.warn

Logs of the warn level.

Logs at this level mainly report the issues that the SDK has encountered but automatically solved.

Note
If you call a deprecated method, the SDK does not send warning messages.

◆ error

com.herewhite.sdk.domain.LoggerOptions.Level.error

Logs of the error level.

Logs at this level mainly report the errors that cause the SDK to fail to complete a task.