Skip to content

Commit

Permalink
Merge pull request #242 from NordicSemiconductor/bugfix/retrofit
Browse files Browse the repository at this point in the history
Fix for new OkHttp
  • Loading branch information
philips77 authored Jun 21, 2024
2 parents 5b2a38b + 8304ea7 commit af79187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class HttpLoggingInterceptor @JvmOverloads constructor(private val logger: Logge
logger.log("")
logger.log(buffer?.clone()?.readString((charset)!!))
}
endMessage += " (" + buffer?.size() + "-byte body)"
endMessage += " (" + buffer?.size + "-byte body)"
}
logger.log(endMessage)
}
Expand Down

0 comments on commit af79187

Please sign in to comment.