Level

enum Level : Enum<Level>

The Fireblocks SDK does all of its logging through internal log handler. It logs the messages through the native Android Log class and exposes a URI to the logs as a zip file in the [com.fireblocks.sdk.Fireblocks.getUriForLogFiles function. There are 6 log severity levels defined in the SDK: Level.NONE Level.DEBUG Level.WARN

Logs generated by the SDK are filtered against the SDK’s minimum log level. The SDK’s minimum log value can be set either by including it in the com.fireblocks.sdk.FireblocksOptions instance you use to start the SDK via the com.fireblocks.sdk.FireblocksOptions.Builder.setLogLevel method. If you do not explicitly set a log level, the default level is Level.INFO

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val value: Int

Functions

Link copied to clipboard
fun valueOf(value: String): Level

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.