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

Commit 2ea97e6

Browse files
author
hideki
committed
NPE and RemoteRequestCompletionBlock in 1.3.0-12 - `Exception` could be `null` in `catch` block.
1 parent df5e30b commit 2ea97e6

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)