Avoid crash (OOM) when content is too long.
This commit is contained in:
parent
4ddfc78be2
commit
43cd501684
1 changed files with 5 additions and 0 deletions
|
|
@ -34,6 +34,11 @@ internal class FormattedJsonHttpLogger(
|
||||||
// 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.
|
||||||
if (level != HttpLoggingInterceptor.Level.BODY) return
|
if (level != HttpLoggingInterceptor.Level.BODY) return
|
||||||
|
|
||||||
|
if (message.length > 100_000) {
|
||||||
|
Timber.d("Content is too long (${message.length} chars) to be formatted as JSON")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (message.startsWith("{")) {
|
if (message.startsWith("{")) {
|
||||||
// JSON Detected
|
// JSON Detected
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue