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 fbcf2b07a6 - Show all commits

Make skipped file a warning

Andras Schmelczer 2025-11-28 07:59:29 +00:00

View file

@ -174,7 +174,7 @@ export class SyncHistory {
this.logger.error(`Cannot sync file: ${message}`); this.logger.error(`Cannot sync file: ${message}`);
break; break;
case SyncStatus.SKIPPED: case SyncStatus.SKIPPED:
this.logger.error(`Skipping file: ${message}`); this.logger.warn(`Skipping file: ${message}`);
break; break;
} }