cancel
Showing results for 
Search instead for 
Did you mean: 

Code Stages - Debugging

TomCirone
Level 6
Hi All, Curious what most people do to de-bug code stages since there's no way to step through the code line by line. 
4 REPLIES 4

AndreyKudinov
Level 10
If it is too complex, you can write/debug code in visual studio, but so far I managed to blindly code most of it, only sometimes passing some debug values outside.

TomCirone
Level 6
Thanks aikudino! This is what I've been doing as well.  It does become a bit burdensome to get it into Visual studio because of the global code/libraries.  Certainly simple enough but feels like a time-waster.

John__Carter
Staff
Staff
The code stage was always intended as an execution mechanism rather than an IDE. But I agree, debugging is a pain in the #### and for anything more than a handful of lines it's easier to perfect the code in something like VS and then copy across.

NitinSafaya
Level 3
I write all the complex code in Visual Studio and then copy it into code stage. If it a simple datatable manipulation, loops, regex, string manipulation etc I directly use the code stage. It’s not that difficult.