Show stacktrace when failing to load message body

Change-Id: Ie6b2dda6fa32982e48e052f5f8fe2c699ebc8a01
This commit is contained in:
Makoto Onuki 2010-12-21 16:36:38 -08:00
parent ac0a11b25a
commit 22b33a5a4a

View File

@ -986,7 +986,7 @@ public abstract class MessageViewFragmentBase extends Fragment implements View.O
} catch (RuntimeException re) {
// This catches SQLiteException as well as other RTE's we've seen from the
// database calls, such as IllegalStateException
Log.d(Email.LOG_TAG, "Exception while loading message body: " + re.toString());
Log.d(Email.LOG_TAG, "Exception while loading message body", re);
mErrorLoadingMessageBody = true;
return null;
}