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.