Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyec committed Jan 14, 2025
1 parent e1b6373 commit 3d81d23
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function handleMessageV1(
agreementState.rejected,
() => {
logger.info(
`Skipping processing of entry ${agreement.id}. Reason: state ${agreement.state}`
`Skipping processing of agreement ${agreement.id}. Reason: state ${agreement.state}`
);
return Promise.resolve();
}
Expand All @@ -86,6 +86,7 @@ export async function handleMessageV1(
agreementState.missingCertifiedAttributes,
agreementState.pending,
agreementState.rejected,
// eslint-disable-next-line sonarjs/no-identical-functions
() => {
logger.info(
`Skipping processing of agreement ${agreement.id}. Reason: state ${agreement.state}`
Expand Down

0 comments on commit 3d81d23

Please sign in to comment.