All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apimatic.coreinterfaces.http.LoggingLevel Maven / Gradle / Ivy

Go to download

An abstract layer of the functionalities provided by apimatic-core-library, okhttp-client-adapter and APIMatic SDKs.

There is a newer version: 0.3.1
Show newest version
package io.apimatic.coreinterfaces.http;

/**
 * To provide the LoggingLevelType conversion
 */
public interface LoggingLevel {
    /**
     * Info log level
     */
    LoggingLevel INFO = LoggingLevelType.INFO;

    /**
     * Debug log level
     */
    LoggingLevel DEBUG = LoggingLevelType.DEBUG;

    /**
     * Error Log level
     */
    LoggingLevel ERROR = LoggingLevelType.ERROR;

    /**
     * Trace Log level
     */
    LoggingLevel TRACE = LoggingLevelType.TRACE;

    /**
     * Warn log level
     */
    LoggingLevel WARN = LoggingLevelType.WARN;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy