com.datastax.insight.core.util.LogUtil Maven / Gradle / Ivy
The newest version!
package com.datastax.insight.core.util;
public class LogUtil {
private String className;
public LogUtil(Class cls){
this.className=cls.getName();
}
public void logComponentStart(String method){
System.out.println("===datastax-Insight Component Started==="+
className+"."+method+"===");
}
public void logComponentEnd(String method){
System.out.println("===datastax-Insight Component Ended==="+
className+"."+method+"===");
}
public void logUserOutputStart(String method){
System.out.println("===datastax-Insight User Output Started==="+
className+"."+method+"===");
}
public void logUserOutputEnd(String method){
System.out.println("===datastax-Insight User Output Ended==="+
className+"."+method+"===");
}
}