Here you can find the source of logTiming(String description, int n, long time, TimeUnit unit)
public static void logTiming(String description, int n, long time, TimeUnit unit)
//package com.java2s; //License from project: Apache License import java.util.concurrent.TimeUnit; public class Main { public static void logTiming(String description, int n, long time, TimeUnit unit) { System.out.format("%s = %,d %s (n = %,d)%n", description, time, unit.name().toLowerCase(), n); }/*from w w w.j a v a2 s .c o m*/ }