Skip to content

Commit

Permalink
Ticket: always log properties if we read them
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Nov 19, 2024
1 parent f2afeeb commit d862eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voctopublish/model/ticket_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def _get_str(self, key, optional=False, try_default=False):
LOG.warning(f"optional property '{key}' was not in ticket")
if not optional and value in (None, ""):
raise TicketException(f"Property '{key}' is missing or empty in ticket")
LOG.debug(f"{key!r} = {value!r}")
LOG.debug(f"{key!r} = {value!r}")
return value

def _get_list(self, key, optional=False, try_default=False, split_by=","):
Expand Down

0 comments on commit d862eef

Please sign in to comment.