I am relatively new to Visual Basic.
When it comes to logging, in Java I use log4j for logging.
What is the equivalent in Visual Basic and can you please guide me to a good tutorial?
I am relatively new to Visual Basic. When it comes to logging, in Java
Share
You’re looking for Log4Net:
That’s a near-1:1 port of log4j, and so should be very familiar to you. However, what I really recommend for logging in most .NET apps is to simply use the
Traceclass that’s already built into the framework.