1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Added method name logging on transaction logging, when debug is enabled

This commit is contained in:
Fiouz 2010-11-17 21:11:07 +00:00
parent dc16657480
commit a67a2022d3

View File

@ -367,7 +367,7 @@ public class LocalStore extends Store implements Serializable, LocalStoreMigrati
mDb.endTransaction(); mDb.endTransaction();
if (debug) if (debug)
{ {
Log.v(K9.LOG_TAG, "LocalStore: Transaction ended, took " + Long.toString(System.currentTimeMillis() - begin) + "ms"); Log.v(K9.LOG_TAG, "LocalStore: Transaction ended, took " + Long.toString(System.currentTimeMillis() - begin) + "ms / " + new Exception().getStackTrace()[1].toString());
} }
} }
} }