We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac7cb5a commit 4e85cf1Copy full SHA for 4e85cf1
cybersource-rest-auth-netstandard/AuthenticationSdk/AuthenticationSdk/util/LogUtility.cs
@@ -64,8 +64,8 @@ public string MaskSensitiveData(string str)
64
foreach (Match match in matches)
65
{
66
String strr = match.ToString();
67
- strr = Regex.Replace(strr, "\\s*[s/-]*", "");
68
-
+ strr = strr.Replace(" ", "");
+ strr = strr.Replace("-", "");
69
//replace original value in str with match
70
str = str.Replace(match.ToString(), strr);
71
}
0 commit comments