We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea8c290 commit 5e04233Copy full SHA for 5e04233
1 file changed
src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs
@@ -190,6 +190,12 @@ public override string Log(Error error)
190
191
private void Obfuscate(Error error)
192
{
193
+ error.User = string.Empty;
194
+ if (error.Form != null)
195
+ {
196
+ error.Form.Clear();
197
+ }
198
+
199
//ServerVariables overrides requiring context from the http request should be handled in NuGetGallery.QuietLog
200
var elmahException = error.Exception as ElmahException;
201
if (elmahException != null)
0 commit comments