如何阻止日志类开发时间?

时间:2017-02-21 09:10:58

标签: android logging

我是项目的技术负责人,我创建了一个名为Logs的班级名称,用于打印debugwarninfoverbose目的

我告诉我的团队使用Logs类进行打印调试日志,但没有人遵循我的规则,我想只做Logs类允许打印调试消息和其他类不能看过Log课有没有办法做到这一点?

我的班级实施是

public class Logs {
    private static String TAG = "test";


    public static void d(String tag, String msg) {
        Log.d(tag, msg);
    }

    public static void e(String tag, String msg, Throwable throwable) {
        Log.e(tag, msg, throwable);
    }

    public static void i(String tag, String msg) {
        Log.i(tag, msg);
    }

    public static void w(String tag, String msg, Throwable throwable) {
        Log.w(tag, msg, throwable);
    }

}

1 个答案:

答案 0 :(得分:-1)

你不能这样做。

Log类始终可见,因为它位于android.util包下。 而且您无法从util包中删除该类。