From dd5ba7c63115549f6a9f8792025bfb3d4947450d Mon Sep 17 00:00:00 2001 From: Yang Chun Ung Date: Thu, 7 Dec 2023 13:21:09 +0900 Subject: [PATCH] Log arena list count --- NineChronicles.Headless/ArenaParticipantsWorker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NineChronicles.Headless/ArenaParticipantsWorker.cs b/NineChronicles.Headless/ArenaParticipantsWorker.cs index 41c8e03ed..3ba736961 100644 --- a/NineChronicles.Headless/ArenaParticipantsWorker.cs +++ b/NineChronicles.Headless/ArenaParticipantsWorker.cs @@ -277,6 +277,6 @@ List runeSlotList }).ToList(); _cache.ArenaParticipantsCache.Set(cacheKey, result, TimeSpan.FromHours(1)); sw.Stop(); - _logger.Information("[ArenaParticipantsWorker]Set Arena Cache[{CacheKey}]: {Elapsed}", cacheKey, sw.Elapsed); + _logger.Information("[ArenaParticipantsWorker]Set Arena Cache[{CacheKey}/{TotalCount}]: {Elapsed}", cacheKey, result.Count, sw.Elapsed); } }