From: Jérôme Benoit Date: Wed, 6 May 2026 18:13:14 +0000 (+0200) Subject: fix(sandcastle): log planner error details instead of swallowing X-Git-Tag: cli@v4.7.0~42 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=158355d488a5b55830427583de4cd93fb17ba98a;p=e-mobility-charging-stations-simulator.git fix(sandcastle): log planner error details instead of swallowing --- diff --git a/.sandcastle/task-source.ts b/.sandcastle/task-source.ts index 6e83c930..4a4458d1 100644 --- a/.sandcastle/task-source.ts +++ b/.sandcastle/task-source.ts @@ -109,8 +109,8 @@ export class GithubIssueSource implements TaskSource { sandbox: docker({ imageName: this.dockerImage, mounts: [...DOCKER_MOUNTS] }), signal: AbortSignal.timeout(TASK_TIMEOUT_MS), }) - } catch { - console.error('Planner timed out or failed. Retrying.') + } catch (err: unknown) { + console.error(`Planner timed out or failed: ${toErrorMessage(err)}`) continue }