Logging and Log Levels
HYPR SDK for iOS
This section provides an overview of the logs and log levels for troubleshooting HYPR SDK for iOS.
Enable Logging
To enable logging from the HYPR SDK for iOS, call the method shown below. A HyprLogLevel
enum value must be provided.

Log Levels
Logging levels allow tenants to control the details appearing in the logs at a given time. Log levels are described in the table below.
Log Level | Description |
---|---|
HyprLogLevelAll | Output all log messages. Equivalent to HyprLogLevelVerbose . |
HyprLogLevelDebug | Output debug and greater log messages. |
HyprLogLevelError | Output warning and greater log messages. |
HyprLogLevelInfo | Output info and greater log messages. |
HyprLogLevelNone | Output error log messages only. |
HyprLogLevelWarning | Output warning and greater log messages. |
HyprLogLevelVerbose | Output verbose and greater log messages. |
Strongly Recommended
It is recommended to disable all logging in your Production environment.
Error Codes
Error Code references can be found here.
Updated 26 days ago