Based on default scheduling, DefaultBookmarkQueuePurger logs two low value information entries every 10 seconds.

This commit is contained in:
Bob Hauser 2025-02-26 15:10:41 -05:00
parent 793bab0032
commit 3371a2f6ab

View file

@ -19,7 +19,7 @@ public class DefaultBookmarkQueuePurger(IBookmarkQueueStore store, ISystemClock
var now = systemClock.UtcNow;
var thresholdDate = now - options.Value.Ttl;
logger.LogInformation("Purging bookmark queue items older than {ThresholdDate}.", thresholdDate);
logger.LogDebug("Purging bookmark queue items older than {ThresholdDate}.", thresholdDate);
while (true)
{
@ -46,6 +46,6 @@ public class DefaultBookmarkQueuePurger(IBookmarkQueueStore store, ISystemClock
currentPage++;
}
logger.LogInformation("Finished purging bookmark queue items.");
logger.LogDebug("Finished purging bookmark queue items.");
}
}