From c734db395114238a982a3446865792469bca76eb Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Wed, 20 Mar 2024 10:05:03 +0000 Subject: [PATCH] log options on error --- apps/coordinator/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/coordinator/src/index.ts b/apps/coordinator/src/index.ts index 2adffc4e3..aad90d21d 100644 --- a/apps/coordinator/src/index.ts +++ b/apps/coordinator/src/index.ts @@ -231,7 +231,7 @@ class Checkpointer { docker: false, }; } catch (error) { - this.#logger.error("checkpoint failed", error); + this.#logger.error("checkpoint failed", { options: opts, error }); return; } }