--log tool classes for tools that are useful in Android development

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.