I have a simple if condition in which I use System.out.println.
I would like to know how can I modify the code in order to replace this usage of a system.out by a logger ?
if(myVar.getDate().equals(20141127) && myVar.getNumber().equals(1)) {
System.out.println("");
}
Any suggestions ?
Thanks