From 73de75abfd46f6b0a98ec1aced02526c063a6b02 Mon Sep 17 00:00:00 2001 From: AlexisLeDain Date: Wed, 8 Apr 2026 21:18:42 +0200 Subject: [PATCH] fix undefined originalFileName --- skills/quarkus-patterns/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skills/quarkus-patterns/SKILL.md b/skills/quarkus-patterns/SKILL.md index 117f02dc..d153a265 100644 --- a/skills/quarkus-patterns/SKILL.md +++ b/skills/quarkus-patterns/SKILL.md @@ -40,6 +40,8 @@ public class As2ProcessingService { try (SafeAutoCloseable ignored = CustomLog.startScope(logContext)) { String structureIdPartner = logContext.get(As2Constants.STRUCTURE_ID); + String originalFileName = logContext.get(As2Constants.FILE_NAME); + // Conditional flow logic boolean isChorusFlow = Boolean.parseBoolean(logContext.get(As2Constants.CHORUS_FLOW));