1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-15 08:29:24 +00:00

Added logging

This commit is contained in:
M66B 2020-07-21 07:56:37 +02:00
parent cf7163b814
commit 790530dde8

View file

@ -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()));
}