Skip to content

Commit

Permalink
修改日志工具类
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiang-gzu committed Jun 30, 2016
1 parent 8efcf22 commit d8b1bb8
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/**
* 将信息记录到“LogCat”,显示调用方法及所在的文件、行号,方便调试查错。
* 在Debug状态下开启,在Release状态下关闭以提高程序性能
* 在Debug状态下开启,在Release状态下关闭以提高程序性能
*
* @author 李玉江[QQ:1023694760]
* @since 2013/11/2
Expand All @@ -30,7 +30,7 @@ public final class LogUtils {
* @param message the message
*/
public static void debug(String message) {
debug(debugTag, message);
debug("", message);
}

/**
Expand Down Expand Up @@ -76,7 +76,7 @@ public static void warn(Throwable e) {
* @param message the message
*/
public static void warn(String message) {
warn(debugTag, message);
warn("", message);
}

/**
Expand Down Expand Up @@ -132,7 +132,7 @@ public static void error(Throwable e) {
* @param message the message
*/
public static void error(String message) {
error(debugTag, message);
error("", message);
}

/**
Expand Down Expand Up @@ -176,7 +176,7 @@ public static void error(String tag, String message) {
/**
* 在某个方法中调用生成.trace文件。然后拿到电脑上用DDMS工具打开分析
*
* @see #stopMethodTracing() #stopMethodTracing()
* @see #stopMethodTracing()
*/
public static void startMethodTracing() {
if (isDebug) {
Expand Down Expand Up @@ -218,6 +218,7 @@ public static String toStackTraceString(Throwable throwable) {
}

/**
* 可显示调用方法所在的文件行号,在AndroidStudio的logcat处可点击定位。
* 此方法参考:https://github.com/orhanobut/logger
*/
private static String getTraceElement() {
Expand Down

0 comments on commit d8b1bb8

Please sign in to comment.