Skip to content

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
schwabix-1311 committed Dec 18, 2024
1 parent 9079988 commit 92dcf85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aquaPi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def api_history_nodes() -> Response:
node_ids = [node.id for node in bus.get_nodes(BusRole.HISTORY)]
if node_ids:
body = json.dumps(node_ids)
log.debug('API history: %s', node_ids, body)
log.debug('API history: %s', body)
return Response(status=HTTPStatus.OK, response=body, mimetype='application/json')
else:
return Response(status=HTTPStatus.NOT_FOUND)
Expand Down

0 comments on commit 92dcf85

Please sign in to comment.