Quantcast
Viewing latest article 5
Browse Latest Browse All 6

Why you have to use a logger

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 latest article 5
Browse Latest Browse All 6

Trending Articles