Skip to content

Commit

Permalink
chore: log id
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin committed Feb 14, 2024
1 parent 36c6c00 commit eba2318
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/domain/events/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export function add(
const conditionalOrders = ownerOrders.get(owner);
log.info(
`Adding conditional order to already existing owner contract ${owner}`,
{ tx, handler, salt, staticInput }
{ conditionalOrderId, tx, handler, salt, staticInput }
);
let exists = false;
// Iterate over the conditionalOrders to make sure that the params are not already in the registry
Expand All @@ -233,6 +233,7 @@ export function add(
}
} else {
log.info(`Adding conditional order to new owner contract ${owner}:`, {
conditionalOrderId,
tx,
handler,
salt,
Expand Down

0 comments on commit eba2318

Please sign in to comment.