Skip to content

Commit

Permalink
Log at error level for exception
Browse files Browse the repository at this point in the history
  • Loading branch information
greenape authored Oct 23, 2024
1 parent 302abc7 commit e1510e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flowmachine/flowmachine/core/server/action_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def action_handler__run_query(
},
)
except Exception as exc:
logger.debug(str(exc), exception=exc, traceback=traceback.format_exc())
logger.error(str(exc), exception=exc, traceback=traceback.format_exc())
return ZMQReply(
status="error",
msg="Unable to create query object.",
Expand Down

0 comments on commit e1510e0

Please sign in to comment.