
Logging is a very
important part of programming that provides advanced debugging
capabilities and structured organisation of information recorded at the
run time. If I say debugging, you may ask "Why not System.out.println
(SOP)?". SOP is a powerful debugging technique that helps to
troubleshoot all the errors at the time of development. But when you
implement your application in a real time environment, unexpected
results and exceptions might occur. Logging provides you an effective
mechanism...