Here you can find the source of log(String msg)
public static void log(String msg)
//package com.java2s; //License from project: Apache License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); public static void log(String msg) { Date date = new Date(); System.err.println("[" + DATE_FORMAT.format(date) + "] " + msg); }/*from ww w . j a v a2 s . c o m*/ public static void log(String fmt, Object obj) { Date date = new Date(); System.err.format("[" + DATE_FORMAT.format(date) + "] " + fmt + "\n", obj); } }