Skip to content

Commit

Permalink
Fix debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
lukipuki committed Oct 29, 2023
1 parent c5f4d88 commit 3faae29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yaroc/clients/mop.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ async def send_result(self, result: MeosResult) -> bool:
) as response:
if response.status == 200:
logging.info("Sending to OResults successful")
logging.debug("Response: {} {}", response.headers, await response.text())
logging.debug("Response: {}", await response.text())
return True
else:
logging.error("Sending unsuccessful: {} {}", response, await response.text())
Expand Down

0 comments on commit 3faae29

Please sign in to comment.