From 19ac42f875670318cffb0579cfd8bfbbc17eb3a1 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 30 Aug 2024 13:15:35 +0200 Subject: [PATCH] Remove debug log CURA-12091 --- cura/BackendPlugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cura/BackendPlugin.py b/cura/BackendPlugin.py index ab66d585bd..0af40d89e9 100644 --- a/cura/BackendPlugin.py +++ b/cura/BackendPlugin.py @@ -102,8 +102,6 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject): # part of the AppImage and uses the sames libraries 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._is_running = True return True