Here you can find the source of log(String message)
public static void log(String message)
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void log(String message) { Date date = new Date(); DateFormat df = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss"); String reportDate = df.format(date); System.out.println(reportDate + "\t" + message); }/*from w w w . ja v a2s . c o m*/ }