JakeWharton / hugo

Annotation-triggered method call logging for your debug builds.
Apache License 2.0
7.92k stars 797 forks source link

Option logged String #132

Open meierjan opened 8 years ago

meierjan commented 8 years ago

I would really love to see an optional §String§ as an annotation Parameter that is logged out.

Putting @DebugLog it on methods like the following could be improved by this

new Observable.OnSubscribe<PlaceEntity>() {
     @DebugLog
     public void call(Subscriber<? super PlaceEntity> subscriber) {
         [...]
     }
}