Added logging

This commit is contained in:
M66B 2020-07-21 07:56:37 +02:00
parent cf7163b814
commit 790530dde8
1 changed files with 4 additions and 0 deletions

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