Improved logging

This commit is contained in:
M66B 2019-06-23 16:25:31 +02:00
parent 947032f898
commit 66c2941dd6
1 changed files with 2 additions and 2 deletions

View File

@ -733,10 +733,10 @@ public class MessageHelper {
text = text.substring(0, s) + decoded + text.substring(e + 2);
i += decoded.length();
} catch (ParseException ex) {
Log.w(ex);
Log.w(new IllegalArgumentException(text, ex));
i += decode.length();
} catch (UnsupportedEncodingException ex) {
Log.w(ex);
Log.w(new IllegalArgumentException(text, ex));
i += decode.length();
}
}