mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 08:29:24 +00:00
Added logging
This commit is contained in:
parent
cf7163b814
commit
790530dde8
1 changed files with 4 additions and 0 deletions
|
@ -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()));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue