Here you can find the source of log(String message)
private static void log(String message)
//package com.java2s; //License from project: Apache License import java.text.MessageFormat; public class Main { private static void log(String format, Object... values) { System.out.println(MessageFormat.format(format, values)); }/*from w ww . java2 s. co m*/ private static void log(String message) { System.out.println(message); } }