Skip to content

Commit

Permalink
process_single_ticket(): fix error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Nov 20, 2024
1 parent 4dbca03 commit f4e2563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voctopublish/voctopublish.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def process_single_ticket():
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
w.c3tt.set_ticket_failed(w.ticket_id, f"{exc_type.__name__}: {e}")
self.logger.exception(f"could not process ticket {w.ticket_id}")
logging.exception(f"could not process ticket {w.ticket_id}")
return False


Expand Down

0 comments on commit f4e2563

Please sign in to comment.