Skip to content

Commit

Permalink
removes async
Browse files Browse the repository at this point in the history
  • Loading branch information
hayribakici committed Jul 6, 2024
1 parent 4cc68ea commit 238c065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/spotify_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ abstract class SpotifyApiBase {
}

/// [enable]s logging of the requests and responses on the debug console.
/// Use [loggingDetail] to control how much should be logged. Default's set
/// Use [loggingDetail] to control how much should be logged. Default's set
/// to [LoggingDetail.simple].
void enableDebugMode(bool enable,
[LoggingDetail loggingDetail = LoggingDetail.simple]) async {
[LoggingDetail loggingDetail = LoggingDetail.simple]) {
_client.enableLogging = enable;
_client.logginDetail = loggingDetail;
}
Expand Down

0 comments on commit 238c065

Please sign in to comment.