Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 8aa2ffb

Browse files
authored
Merge pull request #69 from couchbaselabs/feature/issue_and_933
Fixed https://github.com/couchbase/couchbase-lite-android/issues/933
2 parents df5e30b + 2ea97e6 commit 8aa2ffb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/couchbase/lite/store/ForestDBStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public boolean runInTransaction(TransactionalTask task) {
297297
commit = task.run();
298298
} catch (Exception e) {
299299
commit = false;
300-
Log.e(TAG, e.toString(), e);
300+
Log.e(TAG, "[ForestDBStore.runInTransaction()] Error in TransactionalTask", e);
301301
throw new RuntimeException(e);
302302
} finally {
303303
endTransaction(commit);

0 commit comments

Comments
 (0)