getLogLevel

Returns the current log level that controls the verbosity of client-facing Logcat output.

The log level determines which categories of SDK events are written to Logcat. Higher levels include more verbose output. The default level is LogLevel.INFO.

Code Example:


val level = VideoSDK.getLogLevel()
Log.d("App", "Current SDK log level: $level")

Return

the current LogLevel controlling Logcat output verbosity

See also