mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Replace new message string with a logging line
CURA-4398
This commit is contained in:
parent
71f794f76d
commit
e052c3ba83
1 changed files with 1 additions and 5 deletions
|
@ -843,13 +843,9 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
|||
# This function can fail to actually start a print due to not being authenticated or another print already
|
||||
# being in progress.
|
||||
def startPrint(self):
|
||||
|
||||
# Check if we're already writing
|
||||
if not self._write_finished:
|
||||
self._error_message = Message(
|
||||
i18n_catalog.i18nc("@info:status",
|
||||
"Sending new jobs (temporarily) blocked, still sending the previous print job."))
|
||||
self._error_message.show()
|
||||
Logger.log("d", "Sending new jobs (temporarily) blocked, still sending the previous print job.")
|
||||
return
|
||||
|
||||
# Indicate we're starting a new write action, is set back to True at the end of this method
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue