Skip to content

Commit

Permalink
Add environment log when starting engine/plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Aug 28, 2024
1 parent f8aa923 commit 5bb265a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cura/BackendPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ def start(self) -> bool:
}
if Platform.isWindows():
popen_kwargs["creationflags"] = subprocess.CREATE_NO_WINDOW

Logger.info(os.environ)
self._process = subprocess.Popen(self._validatePluginCommand(), **popen_kwargs)
self._is_running = True
return True
Expand Down

0 comments on commit 5bb265a

Please sign in to comment.