@omegup/msync 0.0.42 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -1461,7 +1461,7 @@ const makeWatchStream = (db, { collection, projection: p, hardMatch: m }, startA
|
|
|
1461
1461
|
if (doc)
|
|
1462
1462
|
await new Promise(resolve => setTimeout(resolve, 100));
|
|
1463
1463
|
if (doc)
|
|
1464
|
-
log$1('detected', doc);
|
|
1464
|
+
log$1('detected', collection.collectionName, doc);
|
|
1465
1465
|
return doc;
|
|
1466
1466
|
};
|
|
1467
1467
|
return { tryNext, close: () => stream.close() };
|
package/index.js
CHANGED
|
@@ -1463,7 +1463,7 @@ const makeWatchStream = (db, { collection, projection: p, hardMatch: m }, startA
|
|
|
1463
1463
|
if (doc)
|
|
1464
1464
|
await new Promise(resolve => setTimeout(resolve, 100));
|
|
1465
1465
|
if (doc)
|
|
1466
|
-
console$1.log('detected', doc);
|
|
1466
|
+
console$1.log('detected', collection.collectionName, doc);
|
|
1467
1467
|
return doc;
|
|
1468
1468
|
};
|
|
1469
1469
|
return { tryNext, close: () => stream.close() };
|