Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temp: add more logging #320

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions commerce_coordinator/apps/commercetools/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ def post(self, request):

message_details = OrderLineItemMessageInputSerializer(data=input_data)
message_details.is_valid(raise_exception=True)
logger.info(
"Serialized message details: %s for order_id: %s",
message_details,
message_details.data["order_id"],
)

order_id = message_details.data['order_id']
line_item_state_id = message_details.data['to_state']['id']
Expand All @@ -56,6 +61,8 @@ def post(self, request):
else:
self.mark_running(tag, order_id)

logger.info("Sending fulfill_order_placed_message_signal for order_id: %s and line_item_state_id: %s",
order_id, line_item_state_id)
fulfill_order_placed_message_signal.send_robust(
sender=self,
order_id=order_id,
Expand Down
Loading