Added logging

pull/156/head
M66B 6 years ago
parent c6b977b5e7
commit a4fd99414b

@ -831,6 +831,7 @@ public class MessageHelper {
String getHtml(Context context) throws MessagingException, IOException {
if (plain == null && html == null) {
Log.i("No body part");
warnings.add(context.getString(R.string.title_no_body));
return null;
}
@ -841,6 +842,7 @@ public class MessageHelper {
try {
Object content = part.getContent();
Log.i("Content class=" + (content == null ? null : content.getClass().getName()));
if (content instanceof String)
result = (String) content;
else if (content instanceof InputStream)

Loading…
Cancel
Save