In the process of development. We often use log to output logs to help us debug the program
But sometimes it is not enough to satisfy our needs, for example, I want to know which package this log message comes from. Which class
So we encapsulate a log class. Convenient for our use
Import Android.util.log;import cn.edu.sdnu.i.smartsdnu.config;/** * This is a Log of the tool class output information source (package name and class name) * Created by Jimbo on 2015 /7/29. */public class Logutils { /** * ERROR * 2014-5-8 * @param clazz class name * @param msg Output Information */Public St atic void E (class<?> clazz, String msg) { if (config.isdebug) { log.e (Clazz.getsimplename (), msg); } } /** * Information * 2014-5-8 * @param clazz class name * @param msg Output Information * /public static void I (class<?& Gt Clazz, String msg) { if (config.isdebug) { log.i (Clazz.getsimplename (), msg); } } /** * Warning * 2014-5-8 * @param clazz class name * @param msg Output Information * /public static void W (class<?& Gt Clazz, String msg) { if (config.isdebug) { LOG.W (Clazz.getsimplename (), msg); } }}
--log tool classes for tools that are useful in Android development