@Bob Feller Apology for the delay. Manage breakpoints for debugging section should help examine the Variables pane. Are you facing any issues following it.
How do I set watch variables in vscode debugging a logic app? Not sure what syntax to use to add a watch.
Here's Json: I'm trying to evaluate Initialize_variable_ResultScope action variables:
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Scope": {
"type": "Scope",
"actions": {
"Set_variable_Message": {
"type": "SetVariable",
"inputs": {
"name": "Message",
"value": "Test Message"
},
"runAfter": {}
}
},
"runAfter": {
"Initialize_variable_ResultScope": [
"Succeeded"
]
}
},
"Initialize_variable_ResultScope": {
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "ResultScope",
"type": "array"
}
]
},
"runAfter": {
"Initialize_variable_Message": [
"Succeeded"
]
}
},
Azure Logic Apps
1 answer
Sort by: Most helpful
-
MayankBargali-MSFT 70,986 Reputation points Moderator2021-12-15T03:05:37.083+00:00