Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 67b9fd0

Browse files
refactor: added gitleaks-report.json to ignore file and switched log statement placeholders to PascalCase
1 parent 7f7d0fa commit 67b9fd0

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,3 +285,6 @@ __pycache__/
285285
__azurite*.json
286286
__blobstorage__
287287
__queuestorage__
288+
289+
# Gitleaks report
290+
gitleaks-report.json

gitleaks-report.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/ServiceLayer.API/Functions/BSSelectFunctions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<IActionResult> IngressEpisode([HttpTrigger(AuthorizationLevel.
6262
if (response.IsError)
6363
{
6464
logger.LogError(
65-
"Failed to send event to Event Grid.\nSource: {source}\nType: {type}\n Response status code: {code}",
65+
"Failed to send event to Event Grid.\nSource: {Source}\nType: {Type}\n Response status code: {Status}",
6666
cloudEvent.Source, cloudEvent.Type, response.Status);
6767
return new StatusCodeResult(500);
6868
}

0 commit comments

Comments
 (0)