Various improvements #169

Merged
schmelczer merged 78 commits from asch/saturday into main 2025-11-30 15:24:52 +00:00
Showing only changes of commit 953b9fdc9e - Show all commits

Add log lines

Andras Schmelczer 2025-11-30 14:45:18 +00:00

View file

@ -107,10 +107,6 @@ export class Syncer {
promise
);
this.logger.debug(
`Creating new pending document ${relativePath} with id ${id}`
);
try {
await this.syncQueue.add(async () =>
this.internalSyncer.unrestrictedSyncLocallyCreatedFile(document)
@ -400,6 +396,9 @@ export class Syncer {
await this.createFakeDocumentsFromRemoteState();
const allLocalFiles = await this.operations.listFilesRecursively();
this.logger.info(
`Scheduling sync for ${allLocalFiles.length} local files`
);
let locallyPossiblyDeletedFiles: DocumentRecord[] = [];