Remove debug log

CURA-12091
This commit is contained in:
Erwan MATHIEU 2024-08-30 13:15:35 +02:00
parent 34dcd3801d
commit 19ac42f875

View File

@ -102,8 +102,6 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject):
# part of the AppImage and uses the sames libraries # part of the AppImage and uses the sames libraries
plugin_env["APPDIR_MODULE_DIR"] = str(pathlib.Path(validated_plugin_command[0]).parent.absolute()) plugin_env["APPDIR_MODULE_DIR"] = str(pathlib.Path(validated_plugin_command[0]).parent.absolute())
Logger.info(plugin_env)
self._process = subprocess.Popen(validated_plugin_command, env=plugin_env, **popen_kwargs) self._process = subprocess.Popen(validated_plugin_command, env=plugin_env, **popen_kwargs)
self._is_running = True self._is_running = True
return True return True