Skip to content

Commit 5943cb4

Browse files
added orch logging for app insihgt
1 parent 13ed1ca commit 5943cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/CippEntrypoints/CippEntrypoints.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ function Receive-CippHttpTrigger {
6363

6464
function Receive-CippOrchestrationTrigger {
6565
param($Context)
66-
66+
6767
try {
6868
if (Test-Json -Json $Context.Input) {
6969
$OrchestratorInput = $Context.Input | ConvertFrom-Json
7070
} else {
7171
$OrchestratorInput = $Context.Input
7272
}
7373
Write-Information "Orchestrator started $($OrchestratorInput.OrchestratorName)"
74-
74+
Write-Warning "Receive-CippOrchestrationTrigger - $($OrchestratorInput.OrchestratorName)"
7575
$DurableRetryOptions = @{
7676
FirstRetryInterval = (New-TimeSpan -Seconds 5)
7777
MaxNumberOfAttempts = if ($OrchestratorInput.MaxAttempts) { $OrchestratorInput.MaxAttempts } else { 1 }

0 commit comments

Comments
 (0)