Test logging

This commit is contained in:
gabrii
2025-09-18 11:03:50 +02:00
parent 40c39a0372
commit 4a5c63c126
2 changed files with 52 additions and 1 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ def redact_value(value: str) -> str:
if not value:
return value
if len(value) <= 8:
return "***"
return "..."
return value[:4] + "…" + value[-4:]