可以输出类名、函数名以及所在行号的Log帮助类

/***
 * This is free and unencumbered software released into the public domain.
 *
 * Anyone is free to copy, modify, publish, use, compile, sell, or
 * distribute this software, either in source code form or as a compiled
 * binary, for any purpose, commercial or non-commercial, and by any
 * means.
 *
 * For more information, please refer to <http://unlicense.org/>
 */

import android.text.TextUtils;
import android.util.Log;
import com.cpoopc.smoothemotionkeyboard.BuildConfig;

/**
 * @date 21.06.2012
 * @author Mustafa Ferhan Akman
 *
 * Create a simple and more understandable Android logs. 
 * */

public class DebugLog {

  static String tagPrefix = "cp:";
  static String className;
  static String methodName;
  static int lineNumber;

  private DebugLog() {
        /* Protect from instantiations */
  }

  public static boolean isDebuggable() {
    return BuildConfig.DEBUG;
  }

  private static String createLog(String log) {

    StringBuffer buffer = new StringBuffer();
    buffer.append("[");
    buffer.append(methodName);
    buffer.append(":");
    buffer.append(lineNumber);
    buffer.append("]");
    buffer.append(log);

    return buffer.toString();
  }

  private static void getMethodNames(StackTraceElement[] sElements) {
    className = sElements[1].getFileName();
    if (!TextUtils.isEmpty(tagPrefix)) {
      className = tagPrefix + className;
    }
    methodName = sElements[1].getMethodName();
    lineNumber = sElements[1].getLineNumber();
  }

  public static void e(String message) {
    if (!isDebuggable()) return;

    // Throwable instance must be created before any methods
    getMethodNames(new Throwable().getStackTrace());
    Log.e(className, createLog(message));
  }

  public static void i(String message) {
    if (!isDebuggable()) return;

    getMethodNames(new Throwable().getStackTrace());
    Log.i(className, createLog(message));
  }

  public static void d(String message) {
    if (!isDebuggable()) return;

    getMethodNames(new Throwable().getStackTrace());
    Log.d(className, createLog(message));
  }

  public static void v(String message) {
    if (!isDebuggable()) return;

    getMethodNames(new Throwable().getStackTrace());
    Log.v(className, createLog(message));
  }

  public static void w(String message) {
    if (!isDebuggable()) return;

    getMethodNames(new Throwable().getStackTrace());
    Log.w(className, createLog(message));
  }

  public static void wtf(String message) {
    if (!isDebuggable()) return;

    getMethodNames(new Throwable().getStackTrace());
    Log.wtf(className, createLog(message));
  }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值