From 9a290cdf4764ea9e98a2ef9b1ca5af6c1e514609 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 21 Sep 2025 04:31:28 +0200 Subject: [PATCH] CheckDownloaded log message include detail --- API/Schema/MangaContext/Chapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/Schema/MangaContext/Chapter.cs b/API/Schema/MangaContext/Chapter.cs index 2fc9ac3..eabccc8 100644 --- a/API/Schema/MangaContext/Chapter.cs +++ b/API/Schema/MangaContext/Chapter.cs @@ -84,7 +84,7 @@ public class Chapter : Identifiable, IComparable //TODO Log here 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; }