Update logging level to info
All checks were successful
Test / build (push) Successful in 8s

This commit is contained in:
Ethan Lane 2024-06-15 20:55:10 +01:00
parent fb1e010d78
commit 2988ced7f8

View file

@ -10,5 +10,5 @@ export default async function PurgeClaims() {
await Claim.RemoveMany(Claim, expiredClaims);
AppLogger.LogDebug("Timers/PurgeClaims", `Purged ${expiredClaims.length} claims from the database`);
AppLogger.LogInfo("Timers/PurgeClaims", `Purged ${expiredClaims.length} claims from the database`);
}