Skip to content

Commit

Permalink
chore(app): log stream id to determine if duplicate requests are bein…
Browse files Browse the repository at this point in the history
…g made (#2982)
  • Loading branch information
tim-schultz authored Oct 21, 2024
1 parent c995b66 commit d5f4fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database-client/src/composeDatabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export class ComposeDatabase implements WriteOnlySecondaryDataStorageBase {
};

deleteStamp = async (streamId: string): Promise<SecondaryStorageDeleteResponse> => {
this.logger.info(`[ComposeDB][deleteStamp] ${this.did} deleting stamp`);
this.logger.info(`[ComposeDB][deleteStamp] ${this.did} deleting stamp with streamId: ${streamId}`);

const deleteRequest = (await this.compose.executeQuery(
`
Expand Down

0 comments on commit d5f4fab

Please sign in to comment.