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
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ public class LocalStore extends Store implements Serializable, LocalStoreMigrati
mDb.endTransaction();
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());
}
}
}