diff options
Diffstat (limited to 'taskflow/engines/action_engine/process_executor.py')
| -rw-r--r-- | taskflow/engines/action_engine/process_executor.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/taskflow/engines/action_engine/process_executor.py b/taskflow/engines/action_engine/process_executor.py index e59852f..85d37e0 100644 --- a/taskflow/engines/action_engine/process_executor.py +++ b/taskflow/engines/action_engine/process_executor.py @@ -504,16 +504,16 @@ class DispatcherHandler(asyncore.dispatcher): try: self.reader.feed(data) except (IOError, UnknownSender): - LOG.warn("Invalid received message", exc_info=True) + LOG.warning("Invalid received message", exc_info=True) self.handle_close() except _DECODE_ENCODE_ERRORS: - LOG.warn("Badly formatted message", exc_info=True) + LOG.warning("Badly formatted message", exc_info=True) self.handle_close() except (ValueError, su.ValidationError): - LOG.warn("Failed validating message", exc_info=True) + LOG.warning("Failed validating message", exc_info=True) self.handle_close() except ChallengeIgnored: - LOG.warn("Failed challenge sequence", exc_info=True) + LOG.warning("Failed challenge sequence", exc_info=True) self.handle_close() |
