Skip to content

LogLevel

enum LogLevel

Controls the verbosity of plugin logging.

Level Value Description
Off 0 Disable all logging.
Error 1 Log only critical failures.
Warning 2 Log warnings + errors.
Info 3 Operational information.
Debug 4 Developer-level debug output.
Verbose 5 Maximum detail.

Mirrors native logging constants on iOS & Android.


Members

Debug

LogLevel.debug

Developer-level debug output.

Error

LogLevel.error

Log only critical failures.

Info

LogLevel.info

Operational information.

Off

LogLevel.off

Disable all logging.

Verbose

LogLevel.verbose

Maximum detail.

Warning

LogLevel.warning

Log warnings + errors.