Hugo
• Before:
public void doSomething(String input) {
Log.i("SomeTagYouMadeUp", "doSomething(" + input + ")");
// Shockingly, this does something
Log.i("SomeTagYouMadeUp", "doSomething finished");
}
• After:
@DebugLog
public void doSomething(String input) {
// Shockingly, this does something
}