August 2018
Intermediate to advanced
524 pages
14h 45m
English
Java since version 9 includes a façade implementation for logging. Its application is very simple and we can expect that logging frameworks will very soon start to support this façade. The fact that this façade is built into the JDK has two major advantages:
If we use the logging façade provided with JDK, the start of the ColorManager class will be changed to the following:
package packt.java11.mastermind; import javax.inject.Inject; ...