Skip to content

Commit 0424767

Browse files
committed
chore: Remove bad logger line
1 parent b48de39 commit 0424767

File tree

1 file changed

+1
-1
lines changed
  • kubernetes-orchestrator-extension/StoreTypes/K8SJKS

1 file changed

+1
-1
lines changed

kubernetes-orchestrator-extension/StoreTypes/K8SJKS/Store.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public Pkcs12Store DeserializeRemoteCertificateStore(byte[] storeContents, strin
4848
try
4949
{
5050
_logger.LogTrace("Attempting to load JKS store w/ password");
51-
_logger.LogTrace("Attempting to load JKS store w/ password ${Pass}", storePassword); //TODO: Remove this line, it is for debugging purposes only
51+
// _logger.LogTrace("Attempting to load JKS store w/ password ${Pass}", storePassword); //TODO: Remove this line, it is for debugging purposes only
5252
using (var ms = new MemoryStream(storeContents))
5353
{
5454
jksStore.Load(ms, string.IsNullOrEmpty(storePassword) ? Array.Empty<char>() : storePassword.ToCharArray());

0 commit comments

Comments
 (0)