Skip to content

Commit

Permalink
Output on error-stream doesn't necessarily mean an error.
Browse files Browse the repository at this point in the history
done as part of CURA-11064
  • Loading branch information
rburema committed Sep 19, 2023
1 parent c9d5043 commit 1e360e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cura/BackendPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ def start(self) -> bool:
self._process = subprocess.Popen(self._validatePluginCommand(), **popen_kwargs)
stdout_data, stderr_data = self._process.communicate()
if stderr_data:
Logger.error(f"Error starting backend_plugin [{self._plugin_id}] stderr: {str(stderr_data)}")
return False
Logger.warning(f"Info on error-stream when starting backend_plugin [{self._plugin_id}] stderr: {str(stderr_data)}")
Logger.info(
f"Started backend_plugin [{self._plugin_id}] with PID: {self._process.pid}, stdout: {str(stdout_data)}")
self._is_running = True
Expand Down

0 comments on commit 1e360e1

Please sign in to comment.