Here you can find the source of printTime(String msg)
public static void printTime(String msg)
//package com.java2s; // The MIT License public class Main { public static void printTime(String msg) { System.out.println("Time: (" + System.currentTimeMillis() + ") " + msg); }//from ww w . ja va 2 s.c o m }