🎨 Avoid showing traceback on handled error

Makes the traceback show up only when running under high verbosity
This commit is contained in:
Renato Alves
2023-07-28 15:49:53 +02:00
parent a3b981efa8
commit dbf590bbc3

View File

@@ -583,7 +583,7 @@ class MozillaInteraction:
"Failed to decode username or password for entry from URL %s", "Failed to decode username or password for entry from URL %s",
url, url,
) )
LOG.exception(e) LOG.debug(e, exc_info=True)
user = "*** decryption failed ***" user = "*** decryption failed ***"
passw = "*** decryption failed ***" passw = "*** decryption failed ***"