I'm using Visual Studio Code on my Mac laptop and I'm after writing my first program in Java but when I run the code I get an error message about System.out.
public class Hello
{
public static void main(final String[] args)
{
System.out.println("Hello, World!");
}
}
"Replace this use of System.out or System.err by a logger."
How can I fix this error?