1
I have a question, when I do debugging sometimes I forget to take the breakpoint, but what happens if I forget and my project goes into production? I think as are breakpoints of ide
nothing will happen, but what if for example in the language javascript
who put the debugger;
in code even, when the client is using something will happen? or will continue the normal execution of the program ?
production code should go without debug option, a release version, so it should not affect anything, besides, breakpoints are IDE’s thing and do not go in compiled code, so do not worry about them. now writing a Debugger command and sending the code is already a serious mistake, this should not go into production ever
– Ricardo Pontual
in
c#
you can use the directive#if DEBUG
, that will execute something only if it is executed in debug, injava
I don’t know, but send adebugger
in thejavascript
is a problem– Ricardo Pontual
Oh yes, I just wanted to take this question really, sometimes I use the Debugger, but I always withdraw afterwards, thank you
– Jeff Henrique
I also left a Bugger there, this is from the "who ever" series:-D
– Ricardo Pontual
Kkkkk I for now never, started not long, and hope never leave
– Jeff Henrique