In Excel VBA, is it good practice to leave Debug.Print instructions in code that goes in "production" ? That is quite useful to debug the sheets realtime at the user's machine when something goes wrong. Does it affect performance when Visual Studio is closed ? If not, what would you advise ?

link|improve this question

You say "Visual Studio" but you are talking about VBA, right? Do you mean VBE? – Issun Dec 7 '11 at 9:14
Ahhh, yes I guess I just understand what people referred to as VBE now... Yes I guess so :) [ALT + F11] – jerome G Dec 7 '11 at 9:17
1) If it is important to capture what the user was doing when the things went wrong, a transaction log would seen a better option. Start a new file per run or per day; delete any over 48 hours old. Yes there is a performance cost but how would you measure it. 2) Visual Studio is MS's development environment for its professional languages. VB 2010 is hundreds of times faster than VBA/VBE and has thousands of cool facilities. You can access Excel from it if you want to use a worksheet. – Tony Dallimore Dec 7 '11 at 13:37
feedback

2 Answers

up vote 6 down vote accepted

Debug.Print instruction DO have a small performance cost. So I would avoid them in loops that are executed a zillion times. Except for those cases, I think it's ok to keep them.
You could also use conditional compilation directives (#if) in combination with a compiler constant (#const) to enable/disable them globally without performance impact.

#CONST developMode = True

sub Xyz
  #If developMode Then
    Debug.Print "something"
  #End If
End Sub
link|improve this answer
1  
@iDevelop +1 Learn something new everyday - didn't realise Excel supported conditional compilation! Thanks. – dash Dec 7 '11 at 9:00
that does seem interesting, thanks ! – jerome G Dec 7 '11 at 9:00
Clear enough to desserve a +1 :). Btw, conditional compilation (and some useful other stuff) was discussed in this interesting thread: stackoverflow.com/questions/1070863/hidden-features-of-vba – JMax Dec 7 '11 at 9:08
Do you have a source for this? – JP. Dec 7 '11 at 18:18
That's the way I do it, with a global variable of DebugMode. I have a small check on ThisWorkbook.Save to flag if DebugMode is True, helps stop it sneaking into production. – Lunatik Jan 5 at 13:22
show 1 more comment
feedback

I usually have two versions; prod without debugging, and prod with debugging. That, combined with the catchall error handler logging, means that if a user experiences issues, I can deploy the debug version to them and they can run that up.

I have a macro that I run that comments out the debug.print statements, so it's not a real maintenance overhead.

The problem with running a debug version all the time (and, with Excel VBA it's not usually a performance thing) is that your app is constantly emitting information that it doesn't need too. In an environment with controlled spreadsheets, for example, this can be seen as a bad thing.

In terms of global error handling, you still need the On Error GoTo statement for every function you want error handling in. You can, however, pipe these to a common function:

Public Function HandleTheNastyErrors(E As ErrObject, ByVal writeLog As Boolean = True) 

    Select Case E.Number 

    Case xxx 

        ...specific error handling... 

    Case Else 
        ... Display a message to the user about how you dont know what happened....             
    End Select 

    If writeLog Then

       ...Log Writing Code...

    End If

End Function 

And then, OnError:

ErrorHandler:
 Call HandleTheNastyErrors(Err, True)

Show do the trick

link|improve this answer
Could you comment on your "catch all" ? I don't really have ideas of how to handle errors smartly and somehow generically so far. Thanks ! – jerome G Dec 7 '11 at 9:01
@jeromeG There you go. Hope it helps. – dash Dec 7 '11 at 9:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.