mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Added logging
This commit is contained in:
@@ -1949,6 +1949,10 @@ public class MessageHelper {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else if (content instanceof String) {
|
||||
String text = (String) content;
|
||||
String sample = text.substring(0, Math.min(80, text.length()));
|
||||
Log.e("Mixed string=" + sample);
|
||||
} else
|
||||
Log.e("Mixed type=" + (content == null ? null : content.getClass().getName()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user