Skip to content

Commit 22db214

Browse files
Potential fix for code scanning alert no. 61: Clear-text logging of sensitive information
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 6c43ada commit 22db214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credentials-provider/token_refresher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _get_all_tokens() -> List[Tuple[Path, Dict]]:
112112
List of (filepath, token_data) tuples for all valid tokens
113113
"""
114114
if not OAUTH_TOKENS_DIR.exists():
115-
logger.error(f"OAuth tokens directory not found: {OAUTH_TOKENS_DIR}")
115+
logger.error("OAuth tokens directory not found")
116116
return []
117117

118118
all_tokens = []

0 commit comments

Comments
 (0)