Skip to content

Commit 3cdd385

Browse files
Merge pull request #292037 from xuehongg/mybranch2
Logic Apps Standard: add instruction to filter out storage errors like 404 and 412
2 parents e7d7807 + 78ada09 commit 3cdd385

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

articles/logic-apps/enable-enhanced-telemetry-standard-workflows.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: kewear
77
ms.author: kewear
88
ms.reviewer: estfan, azla
99
ms.topic: how-to
10-
ms.date: 11/15/2024
10+
ms.date: 12/16/2024
1111

1212
# Customer intent: As a developer, I want to turn on and view enhanced telemetry in Application Insights for Standard logic app workflows.
1313
---
@@ -644,6 +644,23 @@ The following example sets the log's default verbosity level to **Warning**, but
644644

645645
If you don't specify any **logLevel** values, the default verbosity level is **Information**. For more information, see [Configure log levels](../azure-functions/configure-monitoring.md#configure-log-levels).
646646

647+
### Remove storage dependency errors
648+
649+
To filter out storage dependency errors, such as **404 Not Found** errors and **412 Precondition Failed** errors, set the **Host.Workflow** log level to **None**, for example:
650+
651+
```json
652+
{
653+
"logging": {
654+
"logLevel": {
655+
"Workflow.Host": "Warning",
656+
"Workflow.Jobs": "Warning",
657+
"Workflow.Runtime": "Warning",
658+
"Host.Workflow": "None"
659+
}
660+
}
661+
}
662+
```
663+
647664
### [Portal](#tab/portal)
648665

649666
1. In the [Azure portal](https://portal.azure.com), open your Standard logic app resource.

0 commit comments

Comments
 (0)