Quantcast
Channel: My Business Database » Software Development
Viewing all articles
Browse latest Browse all 6

Why you have to use a logger

$
0
0

It’s not really crucial which logging framework do you use in yor applications. The important thing is that you use in any case a logger instead of  applying System.out.println(” … “); for logging purposes.

The reason is the logging frameworks can be parallelized but System.out.println() can’t be parallelized.


Viewing all articles
Browse latest Browse all 6

Trending Articles