We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f232367 commit f7c4854Copy full SHA for f7c4854
apps/webapp/app/v3/services/resetIdempotencyKey.server.ts
@@ -1,5 +1,6 @@
1
import type { AuthenticatedEnvironment } from "~/services/apiAuth.server";
2
import { BaseService, ServiceValidationError } from "./baseService.server";
3
+import { logger } from "~/services/logger.server";
4
5
export class ResetIdempotencyKeyService extends BaseService {
6
public async call(
@@ -26,6 +27,10 @@ export class ResetIdempotencyKeyService extends BaseService {
26
27
);
28
}
29
30
+ logger.info(
31
+ `Reset idempotency key: ${idempotencyKey} for task: ${taskIdentifier} in env: ${authenticatedEnv.id}, affected ${count} run(s)`
32
+ );
33
+
34
return { id: idempotencyKey };
35
36
0 commit comments