如何使用Hugo插件记录特定语句

时间:2016-02-26 17:11:22

标签: java android-studio-2.0 hugo-logging

我正在使用Hugo插件登录我的项目。如git-hub页面中所述,它会记录方法返回值和方法参数值。

例如:

  @DebugLog
public String getName(String first, String last) {
  SystemClock.sleep(15); // Don't ever really do this!
  return first + " " + last;
}

将打印

D/Example: ⇢ getName(first="Jake", last="Wharton")
D/Example: ⇠ getName = "Jake Wharton" [16ms]

有没有办法记录单个语句而不是整个方法?

1 个答案:

答案 0 :(得分:0)

Hugo没有记录单个陈述。您可以使用Timber