1

我正在使用 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]

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

4

1 回答 1

0

Hugo doesn't log single statements. You can use Timber.

于 2016-07-14T21:00:36.110 回答