In Azure Logic Apps, is there any way to do any kind of debugging so I can understand what is (or rather, isn't) happening when I do a test run?
Here's my specific case:
I have a Logic App that connects to a Dropbox account, monitors a folder for any new text files, then writes the contents of that text file to a SQL Server database table. Pretty simple and straightforward and all that works fine. But now I'm trying to add a condition before it writes to the database where the contents of the text file has to contain a certain word (Error to be specific). Adding the step is also simple and straightforward, but no matter what, the condition evaluates to false, even when my string definitely appears in the file.
So what I need to understand is if there is a way I can view the text that the condition is evaluating, similar to being able to view the value of a variable in pretty much any IDE. I understand the idea of Logic Apps is to greatly reduce or eliminate the need for coding, but this is a basic issue I'm trying to diagnose and this kind of insight to what it's doing seems pretty elementary.