Project Description
How do you do logging in your VBA Application??
Are you using Debug.Print ?
or write your logging information to a file or datatable ?
How about sending your logging information via EMail ?
VBA Logger gives you an uniform logging API with pluggable log savers.
You basic interface is :
Logger.Log.[Error|Debug|Trace|Message]
e.g logging an Error from the UI.Customer class in Procedure DisplayCustomer yo may use:
Logger.Log.Error "UI", "Customer", "DisplayCustomer", 1234, "Unknown Customer ID"
Have a look at the presentation in the Download Area