-
Notifications
You must be signed in to change notification settings - Fork 569
Closed
Labels
enhancementA software enhancement for SQLCipher for AndroidA software enhancement for SQLCipher for Android
Description
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:
- 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. :-)
Metadata
Metadata
Assignees
Labels
enhancementA software enhancement for SQLCipher for AndroidA software enhancement for SQLCipher for Android