mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Shortened the logging of the auth key. Turned out it was extremely long
This commit is contained in:
parent
8d2e824205
commit
4b7b8600ec
1 changed files with 1 additions and 1 deletions
|
@ -1122,6 +1122,6 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
|||
def _getSafeAuthKey(self):
|
||||
if self._authentication_key is not None:
|
||||
result = self._authentication_key[-5:]
|
||||
result = result.rjust(len(self._authentication_key), "*")
|
||||
result = "********" + result
|
||||
return result
|
||||
return self._authentication_key
|
Loading…
Add table
Add a link
Reference in a new issue