@@ -663,12 +663,6 @@ public class SpotifyApiBuilder(
663663 public fun retryWhenRateLimited (retryWhenRateLimited : Boolean ): SpotifyApiBuilder =
664664 apply { this .options.retryWhenRateLimited = retryWhenRateLimited }
665665
666- /* *
667- * Set whether to enable to the exception logger
668- */
669- public fun enableLogger (enableLogger : Boolean ): SpotifyApiBuilder =
670- apply { this .options.enableLogger = enableLogger }
671-
672666 /* *
673667 * Set the maximum time, in milliseconds, before terminating an http request
674668 */
@@ -1133,7 +1127,6 @@ public class SpotifyUserAuthorization(
11331127 * @param cacheLimit The maximum amount of cached requests allowed at one time. Null means no limit
11341128 * @param automaticRefresh Enable or disable automatic refresh of the Spotify access token
11351129 * @param retryWhenRateLimited Set whether to block the current thread and wait until the API can retry the request
1136- * @param enableLogger Set whether to enable to the exception logger
11371130 * @param testTokenValidity After API creation, test whether the token is valid by performing a lightweight request
11381131 * @param defaultLimit The default amount of objects to retrieve in one request
11391132 * @param json The Json serializer/deserializer instance
@@ -1155,7 +1148,6 @@ public data class SpotifyApiOptions(
11551148 public var cacheLimit : Int? = 200 ,
11561149 public var automaticRefresh : Boolean = true ,
11571150 public var retryWhenRateLimited : Boolean = true ,
1158- public var enableLogger : Boolean = true ,
11591151 public var testTokenValidity : Boolean = false ,
11601152 public var defaultLimit : Int = 50 ,
11611153 public var allowBulkRequests : Boolean = true ,
0 commit comments