All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onetwo.common.profiling.TimerOutputer Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.profiling;

import java.util.Date;

import org.onetwo.common.date.DateUtils;


public class TimerOutputer implements TimeLogger {

	@Override
	public void log(Class logSource, String msg, Object...args) {
		System.out.println("["+DateUtils.formatDateTime(new Date())+"]: "+logSource.getClass().getSimpleName()+" - "+msg);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy