Skip to content

Instantly share code, notes, and snippets.

@igor-brishkoski
Created February 5, 2017 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igor-brishkoski/eb20d0a6562202734bc9a0a2048bdadf to your computer and use it in GitHub Desktop.
Save igor-brishkoski/eb20d0a6562202734bc9a0a2048bdadf to your computer and use it in GitHub Desktop.
Annotation Module Awesome Logger
// annotation module
package com.example.annotation;
@Target(ElementType.TYPE) //class level
@Retention(RetentionPolicy.SOURCE) //we only need it at compile time
public @interface AwesomeLogger {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment