mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 06:49:00 +08:00
Shortened the logging of the auth key. Turned out it was extremely long
This commit is contained in:
parent
8d2e824205
commit
4b7b8600ec
@ -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…
x
Reference in New Issue
Block a user