Ensure big log does not crash the application
This commit is contained in:
parent
f87597fe9c
commit
0bcb3a704b
1 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
package io.element.android.libraries.network.interceptors
|
package io.element.android.libraries.network.interceptors
|
||||||
|
|
||||||
|
import io.element.android.libraries.core.extensions.ellipsize
|
||||||
import okhttp3.logging.HttpLoggingInterceptor
|
import okhttp3.logging.HttpLoggingInterceptor
|
||||||
import org.json.JSONArray
|
import org.json.JSONArray
|
||||||
import org.json.JSONException
|
import org.json.JSONException
|
||||||
|
|
@ -28,7 +29,7 @@ internal class FormattedJsonHttpLogger(
|
||||||
*/
|
*/
|
||||||
@Synchronized
|
@Synchronized
|
||||||
override fun log(message: String) {
|
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.
|
// 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.
|
// 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