Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 3b76bf2

Browse files
committed
Reduce trace noise
1 parent f7bdc68 commit 3b76bf2

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/GitHub.Api/Cache/CacheContainer.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,11 @@ public void CheckAndRaiseEventsIfCacheNewer(CacheType cacheType, CacheUpdateEven
6060

6161
private void OnCacheUpdated(CacheType cacheType, DateTimeOffset datetime)
6262
{
63-
Logger.Trace("OnCacheUpdated cacheType:{0} datetime:{1}", cacheType, datetime);
6463
CacheUpdated.SafeInvoke(cacheType, datetime);
6564
}
6665

6766
private void OnCacheInvalidated(CacheType cacheType)
6867
{
69-
Logger.Trace("OnCacheInvalidated cacheType:{0}", cacheType);
7068
CacheInvalidated.SafeInvoke(cacheType);
7169
}
7270

src/GitHub.Api/Git/Repository.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ private void CacheHasBeenInvalidated(CacheType cacheType)
176176
return;
177177
}
178178

179-
Logger.Trace($"CacheInvalidated {cacheType.ToString()}");
180179
switch (cacheType)
181180
{
182181
case CacheType.Branches:

0 commit comments

Comments
 (0)