View Single Post
Old 04-08-2007, 09:32 PM   #1 (permalink)
Astrocloud
Apocalypse Nerd
 
Astrocloud's Avatar
 
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?
Astrocloud is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73