We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c090045 commit 5832717Copy full SHA for 5832717
packages/runner/src/storage.ts
@@ -276,7 +276,12 @@ export class Storage implements IStorage {
276
const newDoc = docMap.getDocByEntityId(doc.space, entityId, false)!;
277
// We don't need to hook up ephemeral docs
278
if (newDoc.ephemeral) {
279
- console.log("Found link to ephemeral doc from", doc.entityId);
+ console.log(
280
+ "Found link to ephemeral doc",
281
+ entityIdStr(newDoc.entityId),
282
+ "from",
283
+ entityIdStr(doc.entityId),
284
+ );
285
continue;
286
}
287
// NOTE(@ubik2): I can't recall if a retraction will come over as a missing isValue.
0 commit comments