From 337b9a35685ec13a3cf5e5f1ff3854f92499b797 Mon Sep 17 00:00:00 2001 From: Jameson Miller Date: Tue, 9 Apr 2019 14:19:55 -0400 Subject: [PATCH] GitAuthentication: do not trace credential data port of commit: 9e7b44dd7baec2da35bd2bfcf89e34224a280066 --- GVFS/GVFS.Common/Git/GitAuthentication.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/GVFS/GVFS.Common/Git/GitAuthentication.cs b/GVFS/GVFS.Common/Git/GitAuthentication.cs index 78436b1f4b..ae92c95832 100644 --- a/GVFS/GVFS.Common/Git/GitAuthentication.cs +++ b/GVFS/GVFS.Common/Git/GitAuthentication.cs @@ -74,7 +74,6 @@ public void ApproveCredentials(ITracer tracer, string credentialString) EventMetadata metadata = new EventMetadata(new Dictionary { ["RepoUrl"] = this.repoUrl, - ["CredentialString"] = this.cachedCredentialString }); tracer.RelatedError(metadata, "Failed to parse credential string for approval"); } @@ -106,7 +105,6 @@ public void RejectCredentials(ITracer tracer, string credentialString) EventMetadata metadata = new EventMetadata(new Dictionary { ["RepoUrl"] = this.repoUrl, - ["CredentialString"] = this.cachedCredentialString }); tracer.RelatedWarning(metadata, "Failed to parse credential string for rejection. Rejecting any credential for this repo URL."); this.git.RejectCredentials(this.repoUrl);