Programmers what do you name your debugs?
I actually inherited a convention that when I am throwing a debug statement in to stop my code -I call it "wanka".
This I inherited from a project manager at my old workplace (fujitsu) where our test environment was tcl (script language) based. If you pass the single line "wanka" into the code -the script will stop right there.
So now that I am running VB I am still using wanka but now I am declaring it as a boolean.
wanka = True
if wanka then.... (set breakpoint however)
------------
I guess this is all extraneous stuff. I have the hardest time naming variables meaningfully. I guess I was wondering what you guys name your debugging variables?
|