mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Fix error spam when a printer of a cluster is unreachable
CURA-6057
This commit is contained in:
parent
d34b3b8585
commit
f8b67be487
2 changed files with 4 additions and 2 deletions
|
@ -107,7 +107,7 @@ class DiscoveredPrintersModel(QObject):
|
|||
name: Optional[str] = None,
|
||||
machine_type: Optional[str] = None) -> None:
|
||||
if ip_address not in self._discovered_printer_by_ip_dict:
|
||||
Logger.log("e", "Printer with ip [%s] is not known", ip_address)
|
||||
Logger.log("w", "Printer with ip [%s] is not known", ip_address)
|
||||
return
|
||||
|
||||
item = self._discovered_printer_by_ip_dict[ip_address]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue