CheckDownloaded log message include detail

This commit is contained in:
2025-09-21 04:31:28 +02:00
parent 55b9e3687b
commit 9a290cdf47

View File

@@ -84,7 +84,7 @@ public class Chapter : Identifiable, IComparable<Chapter>
//TODO Log here //TODO Log here
this.Downloaded = File.Exists(chapter.FullArchiveFilePath); this.Downloaded = File.Exists(chapter.FullArchiveFilePath);
await context.Sync(token??CancellationToken.None, GetType(), "CheckDownloaded"); await context.Sync(token??CancellationToken.None, GetType(), $"CheckDownloaded {this} {this.Downloaded}");
return this.Downloaded; return this.Downloaded;
} }