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 49551f9 commit 159817bCopy full SHA for 159817b
test.py
@@ -11,4 +11,6 @@
11
print("Please provide the path to the private key file as an argument.")
12
sys.exit(1)
13
else:
14
- print(f"Private key path: {APP_PRIVATE_KEY}")
+ # Print only the first few characters as confirmation, not the entire key
15
+ masked_key = APP_PRIVATE_KEY[:5] + "..." if len(APP_PRIVATE_KEY) > 5 else "..."
16
+ print(f"Private key loaded successfully (begins with: {masked_key})")
0 commit comments