Skip to content

Commit fdfbcdf

Browse files
committed
Don't spam the log
1 parent f3b29ee commit fdfbcdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Espera.Core/ArtworkCache.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public Task<IBitmap> Retrieve(string artworkKey, int size, int priority)
170170
if (priority < 1)
171171
throw new ArgumentOutOfRangeException("priority", "Priority must be greater than zero");
172172

173-
this.Log().Info("Requesting artwork with key {0} and size {1} from the cache", artworkKey, size);
173+
this.Log().Debug("Requesting artwork with key {0} and size {1} from the cache", artworkKey, size);
174174

175175
return this.queue.Enqueue(priority + 1, () => this.LoadImageFromCache(artworkKey, size));
176176
}
@@ -191,7 +191,7 @@ public async Task Store(string key, byte[] data)
191191
return;
192192
}
193193

194-
this.Log().Info("Adding new artwork {0} to the BlobCache", key);
194+
this.Log().Debug("Adding new artwork {0} to the BlobCache", key);
195195

196196
try
197197
{

0 commit comments

Comments
 (0)