diff --git a/secop/lib/statemachine.py b/secop/lib/statemachine.py index 6ed94c6..309cabf 100644 --- a/secop/lib/statemachine.py +++ b/secop/lib/statemachine.py @@ -186,7 +186,6 @@ class StateMachine: ret = self.state(self) self.init = False if self.stopped: - self.log.debug('%r', self.stopped) self.last_error = self.stopped self.cleanup(self) self.stopped = False @@ -269,7 +268,6 @@ class StateMachine: self.stopped = Restart with self._lock: # wait for running cycle finished if self.stopped: # cleanup is not yet done - self.log.debug('restart') self.last_error = self.stopped self.cleanup(self) # ignore return state on restart self.stopped = False