How do I set watch variables in vscode debugging a logic app? Not sure what syntax to use to add a watch.

Bob Feller 41 Reputation points
2021-12-02T16:53:48.297+00:00

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
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 70,986 Reputation points Moderator
    2021-12-15T03:05:37.083+00:00

    @Bob Feller Apology for the delay. Manage breakpoints for debugging section should help examine the Variables pane. Are you facing any issues following it.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.