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

tk.hongkailiu.test.app.util.LogUtil Maven / Gradle / Ivy

The newest version!
package tk.hongkailiu.test.app.util;

import java.io.PrintStream;

/**
 * Created by hongkailiu on 2015-05-01.
 */
public class LogUtil {

    private static final String TAG = "===test===: ";
    public static void systemOut(String message){
        PrintStream ps = System.out;
        ps.println(TAG + message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy