You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.e(TAG, "Error copying icu data file" + e.getMessage());
I recommend:
Log.e(TAG, "Error copying icu data file", e);
This has two advantages:
The entire stack trace for the exception will be logged, which is useful for figuring out the precise nature of the problem (particularly since getMessage() is often not helpful).
It is less typing. :-)
The text was updated successfully, but these errors were encountered:
Instead of lines like:
Log.e(TAG, "Error copying icu data file" + e.getMessage());
I recommend:
Log.e(TAG, "Error copying icu data file", e);
This has two advantages:
getMessage()
is often not helpful).The text was updated successfully, but these errors were encountered: