I am using Hugo plugin for logging in my project. As mentioned in the git-hub page, it does logs the method return values, and method param values.
For example:
@DebugLog
public String getName(String first, String last) {
SystemClock.sleep(15); // Don't ever really do this!
return first + " " + last;
}
will print
D/Example: ⇢ getName(first="Jake", last="Wharton")
D/Example: ⇠ getName = "Jake Wharton" [16ms]
Is there a way to log the single statement instead of whole method ?