Skip to content

Commit 3a1fcdc

Browse files
committed
Fix mistaken LogError
1 parent 5198732 commit 3a1fcdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Enyim.Caching/MemcachedClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ protected virtual IDictionary<string, T> PerformMultiGet<T>(IEnumerable<string>
996996
}
997997
catch (Exception e)
998998
{
999-
_logger.LogError("PerformMultiGet", e);
999+
_logger.LogError(0, e, "PerformMultiGet");
10001000
}
10011001
}));
10021002
}

0 commit comments

Comments
 (0)