Skip to content

Commit

Permalink
Fix incorrect handling of error
Browse files Browse the repository at this point in the history
  • Loading branch information
shrivara committed Aug 3, 2018
1 parent 82df9b3 commit 07aa933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script_runner2.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def _append_to_log_file(self, console_out):
except Exception as ex:
trace = traceback.format_exc()
error = '{0}: {1}'.format(str(ex), trace)
self._append_to_error_buffer(error)
self.log.error(error)

def send_console_truncated_message(self):
self.log.debug('Flushing final {0} MB limit message'.format(
Expand Down

0 comments on commit 07aa933

Please sign in to comment.