Skip to content

Commit a4741a4

Browse files
Potential fix for code scanning alert no. 2: Insertion of sensitive information into log files
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 04fe468 commit a4741a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pnnl.goss.core/src/pnnl/goss/core/security/impl/SecurityConfigImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ private byte[] getSharedKey() {
137137
}
138138

139139
public boolean validateToken(String token) {
140-
log.debug("Validate token " + token);
140+
log.debug("Validating token");
141141
try {
142142
SignedJWT signed = SignedJWT.parse(token);
143143
JWSVerifier verifier = new MACVerifierExtended(getSharedKey(), signed.getJWTClaimsSet());

0 commit comments

Comments
 (0)