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 e7a7954 commit 2305a73Copy full SHA for 2305a73
src/InformaticsGateway/Services/Http/HL7DestinationController.cs
@@ -17,6 +17,7 @@
17
18
using System;
19
using System.Collections.Generic;
20
+using System.Linq;
21
using System.Net.Mime;
22
using System.Threading.Tasks;
23
using Microsoft.AspNetCore.Http;
@@ -197,7 +198,7 @@ public async Task<ActionResult<HL7DestinationEntity>> Delete(string name)
197
198
199
await _repository.RemoveAsync(hl7DestinationEntity, HttpContext.RequestAborted).ConfigureAwait(false);
200
- _logger.HL7DestinationEntityDeleted(name);
201
+ _logger.HL7DestinationEntityDeleted(new string(name.Take(5).ToArray()));
202
return Ok(hl7DestinationEntity);
203
}
204
catch (Exception ex)
0 commit comments