When I run this code, nothing is printed to the console. How should I use logp?
import java.util.logging.Level;
import java.util.logging.Logger;
public class Log {
public static void main(String[] args) {
// TODO Auto-generated method stub
Logger.getGlobal().logp(Level.ALL, Log.class.getName(), "main", "t");
}
}