Skip to content

LogLevelΒΆ

public enumLogLevel: Int

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ΒΆ

case debug = 4

Developer-level debug output.

errorΒΆ

case error = 1

Log only critical failures.

infoΒΆ

case info = 3

Operational information.

offΒΆ

case off = 0

Disable all logging.

verboseΒΆ

case verbose = 5

Maximum detail.

warningΒΆ

case warning = 2

Log warnings + errors.