Variable LogLevelConst

LogLevel: Readonly<{
    ERROR: "error";
    INFO: "info";
    VERBOSE: "verbose";
    WARN: "warn";
}> = ...

Log levels for the SDK

Type declaration

  • ERROR: "error"

    Logs only errors

  • INFO: "info"

    Logs various information messages, such as those that log the lifecycle of various modules

  • VERBOSE: "verbose"

    Logs any additional information that may be useful during debugging, such as function calls, API queries, etc.

  • WARN: "warn"

    Logs messages from the SDK that do not cause critical errors, but are worth paying attention to

Remarks

Logging is performed on a native side. So you are expected to watch logs in Xcode or Android Studio.

Generated using TypeDoc