Merge remote-tracking branch 'upstream/media3-flat' into media3-flat

This commit is contained in:
Holger Müller 2022-04-08 17:07:54 +02:00
commit 9101980cb6
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@ parameters:
memory-config:
type: string
default: "-Xmx6g -Xms256m -XX:MaxMetaspaceSize=1g -verbose:gc -Xlog:gc*"
memory-config-debug:
type: string
default: "-Xmx6g -Xms256m -XX:MaxMetaspaceSize=1g"
jobs:
build:
docker:

View File

@ -109,7 +109,7 @@ class SubsonicAPIClient(
private fun OkHttpClient.Builder.addLogging() {
val loggingInterceptor = HttpLoggingInterceptor(okLogger)
loggingInterceptor.level = HttpLoggingInterceptor.Level.BODY
loggingInterceptor.level = HttpLoggingInterceptor.Level.HEADERS
this.addInterceptor(loggingInterceptor)
}