Ensure big log does not crash the application
This commit is contained in:
parent
a234f010a0
commit
a448b417f7
1 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
package io.element.android.libraries.network.interceptors
|
||||
|
||||
import io.element.android.libraries.core.extensions.ellipsize
|
||||
import okhttp3.logging.HttpLoggingInterceptor
|
||||
import org.json.JSONArray
|
||||
import org.json.JSONException
|
||||
|
|
@ -28,7 +29,7 @@ internal class FormattedJsonHttpLogger(
|
|||
*/
|
||||
@Synchronized
|
||||
override fun log(message: String) {
|
||||
Timber.v(message)
|
||||
Timber.v(message.ellipsize(200_000))
|
||||
|
||||
// Try to log formatted Json only if there is a chance that [message] contains Json.
|
||||
// It can be only the case if we log the bodies of Http requests.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue