diff --git a/okhttpprofiler/build.gradle b/okhttpprofiler/build.gradle index aeac0ba..2ecf17a 100644 --- a/okhttpprofiler/build.gradle +++ b/okhttpprofiler/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 16 targetSdkVersion 28 versionCode 2 - versionName "1.0.2" + versionName "1.0.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } diff --git a/okhttpprofiler/jcenter.gradle b/okhttpprofiler/jcenter.gradle index 13bda76..06cc6e5 100644 --- a/okhttpprofiler/jcenter.gradle +++ b/okhttpprofiler/jcenter.gradle @@ -2,7 +2,7 @@ apply plugin: 'maven-publish' apply plugin: 'com.jfrog.bintray' -version '1.0.1' +version '1.0.3' publishing { publications { diff --git a/okhttpprofiler/src/main/java/com/itkacher/okhttpprofiler/transfer/LogDataTransfer.java b/okhttpprofiler/src/main/java/com/itkacher/okhttpprofiler/transfer/LogDataTransfer.java index c002400..f6e8be1 100644 --- a/okhttpprofiler/src/main/java/com/itkacher/okhttpprofiler/transfer/LogDataTransfer.java +++ b/okhttpprofiler/src/main/java/com/itkacher/okhttpprofiler/transfer/LogDataTransfer.java @@ -19,7 +19,7 @@ import okio.Buffer; public class LogDataTransfer implements DataTransfer { - private static final int LOG_LENGTH = 255; + private static final int LOG_LENGTH = 4000; private static final int SLOW_DOWN_PARTS_AFTER = 20; private static final int BODY_BUFFER_SIZE = 1024 * 1024 * 10; private static final String LOG_PREFIX = "OKPRFL";