diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index be7cd54..38a8b3e 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,6 +4,7 @@
+
@@ -48,13 +49,6 @@
1574193087583
-
- 1574873790898
-
-
-
- 1574873790898
-
1574873809876
@@ -391,7 +385,14 @@
1593629609079
-
+
+ 1593630096392
+
+
+
+ 1593630096392
+
+
diff --git a/octoprint_mystromswitch/__init__.py b/octoprint_mystromswitch/__init__.py
index 36e3650..656dcc9 100644
--- a/octoprint_mystromswitch/__init__.py
+++ b/octoprint_mystromswitch/__init__.py
@@ -281,7 +281,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
self.lastShutdown = self.shutdownAfterPrintFinished
self._settings.set_boolean(["lastShutdown"], self.lastShutdown)
self._settings.save()
- self._logger.info("lastShutdown2: %s" % self.lastShutdown)
elif command == "disableShutdownAfterFinish":
self._logger.info("disableShutdownAfterFinish")
self.shutdownAfterPrintFinished = False
@@ -289,7 +288,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
self.lastShutdown = self.shutdownAfterPrintFinished
self._settings.set_boolean(["lastShutdown"], self.lastShutdown)
self._settings.save()
- self._logger.info("lastShutdown2: %s" % self.lastShutdown)
elif command == "enablePowerOffAfterFinish":
self._logger.info("enablePowerOffAfterFinish")
self.powerOffAfterPrintFinished = True
@@ -297,7 +295,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
self.lastPowerOff = self.powerOffAfterPrintFinished
self._settings.set_boolean(["lastPowerOff"], self.lastPowerOff)
self._settings.save()
- self._logger.info("lastPowerOff2: %s" % self.lastPowerOff)
elif command == "disablePowerOffAfterFinish":
self._logger.info("disablePowerOffAfterFinish")
self.powerOffAfterPrintFinished = False
@@ -305,7 +302,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
self.lastPowerOff = self.powerOffAfterPrintFinished
self._settings.set_boolean(["lastPowerOff"], self.lastPowerOff)
self._settings.save()
- self._logger.info("lastPowerOff2: %s" % self.lastPowerOff)
def get_api_commands(self):
return dict(
diff --git a/setup.py b/setup.py
index f868b03..6b7970b 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ plugin_package = "octoprint_mystromswitch"
plugin_name = "OctoPrint-MyStromSwitch"
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
-plugin_version = "1.0.3"
+plugin_version = "1.0.4"
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module