Skip to content

Commit 4571c9c

Browse files
authored
feat: add console.error in all firestore catch blocks (#73)
* added console.error firestore catch blocks * changed package version
1 parent 4d17176 commit 4571c9c

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hackerrank/firepad",
33
"description": "Collaborative text editing powered by Firebase",
4-
"version": "0.7.1-beta",
4+
"version": "0.7.4-beta",
55
"author": {
66
"email": "[email protected]",
77
"name": "Progyan Bhattacharya",

src/firestore-adapter.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export class FirestoreAdapter implements IDatabaseAdapter {
302302
}
303303
})
304304
.catch((error) => {
305-
console.log("Error getting cached document:", error);
305+
console.error("[firestore] Error getting checkpoint", error);
306306
});
307307
}
308308

@@ -340,9 +340,14 @@ export class FirestoreAdapter implements IDatabaseAdapter {
340340
});
341341
});
342342

343-
historyRef.get().then(() => {
344-
this._handleInitialRevisions();
345-
});
343+
historyRef
344+
.get()
345+
.then(() => {
346+
this._handleInitialRevisions();
347+
})
348+
.catch((error) => {
349+
console.error("[firestore] Error getting initial revisions", error);
350+
});
346351
}
347352

348353
/**
@@ -724,6 +729,8 @@ export class FirestoreAdapter implements IDatabaseAdapter {
724729
}
725730
})
726731
.catch((error) => {
732+
console.error("[firestore] Error sending cursor", error);
733+
727734
if (typeof callback === "function") {
728735
callback(error, cursor);
729736
}

0 commit comments

Comments
 (0)