Skip to content

Commit

Permalink
Remove logging call in credential manager
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Nov 3, 2023
1 parent 3114108 commit 70d62ee
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/core/zowe/core_for_zowe_sdk/credential_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
Copyright Contributors to the Zowe Project.
"""
import base64
import logging
import sys
from typing import Optional

Expand Down Expand Up @@ -73,8 +72,6 @@ def _retrieve_credential(service_name: str) -> Optional[str]:
str
The retrieved encoded credential
"""
# Configure the logger to ignore warning messages
logging.getLogger().setLevel(logging.ERROR)
encoded_credential = keyring.get_password(service_name, constants["ZoweAccountName"])
if encoded_credential is None and sys.platform == "win32":
# Retrieve the secure value with an index
Expand Down

0 comments on commit 70d62ee

Please sign in to comment.