diff --git a/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs b/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs index 8cefe9c7f1..e212edaa60 100644 --- a/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs +++ b/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs @@ -198,10 +198,10 @@ public static void Obfuscate(Error error) var elmahException = error.Exception as ElmahException; if (elmahException != null) { - var piiServerVaribles = elmahException.ServerVariables; - foreach (var key in piiServerVaribles.Keys) + var piiServerVariables = elmahException.ServerVariables; + foreach (var key in piiServerVariables.Keys) { - error.ServerVariables[key] = piiServerVaribles[key]; + error.ServerVariables[key] = piiServerVariables[key]; } }