Skip to content

Commit

Permalink
fix: print -> log.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
recalcitrantsupplant committed Aug 15, 2024
1 parent 2a0db4a commit 94cacda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prez/services/connegp_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,6 @@ async def _do_query(self, query: str) -> tuple[Graph, list]:
"Default Format"]

# Render as a table
print(tabulate(table_data, headers=headers, tablefmt="grid"))
log.debug(tabulate(table_data, headers=headers, tablefmt="grid"))

return response

0 comments on commit 94cacda

Please sign in to comment.