added zoom + date selector

This commit is contained in:
2026-01-29 13:35:20 -05:00
parent dc5dc4bff4
commit 575c3c5675
21 changed files with 1279 additions and 31 deletions

View File

@@ -59,7 +59,7 @@ public class FileScannerService(MediaService mediaService, IConfiguration config
foreach (var chunk in files.Chunk(50))
{
total += await ScanFileChunkAsync(path, chunk, existingFiles, cancellationToken);
logger.LogInformation("Added {updated} of {count}", total, files.Length);
logger.LogInformation("Added {updated} of {count} [{percentage}%]", total, files.Length, Math.Round(((float)total/ files.Length) * 100));
}
}
catch (Exception ex)