From 39bd9ac0275b8f0c82db13bd8701d72a8432aa38 Mon Sep 17 00:00:00 2001 From: "dave.p.barrett" Date: Sun, 10 Mar 2024 19:15:08 -0700 Subject: [PATCH] BCMOHAM-16286 Logging Update: removed line break to allow for gathering of message in one Kibana document --- .../src/Authorization/Requirements/Hl7v2AuthorizationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/Common/src/Authorization/Requirements/Hl7v2AuthorizationHandler.cs b/Services/Common/src/Authorization/Requirements/Hl7v2AuthorizationHandler.cs index 024433d..33b93dc 100644 --- a/Services/Common/src/Authorization/Requirements/Hl7v2AuthorizationHandler.cs +++ b/Services/Common/src/Authorization/Requirements/Hl7v2AuthorizationHandler.cs @@ -64,7 +64,7 @@ protected override Task HandleRequirementAsync(AuthorizationHandlerContext conte { foreach (HL7.Dotnetcore.Segment segment in resource.Segments(segmentName)) { - loggedMessage += " [ " + segment.Value + " ] " + System.Environment.NewLine; + loggedMessage += " [ " + segment.Value + " ] "; } }