Skip to content

Instantly share code, notes, and snippets.

@heipacker
Created April 9, 2016 13:17
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 heipacker/c71507842ac2507a87891b4784f88e0e to your computer and use it in GitHub Desktop.
Save heipacker/c71507842ac2507a87891b4784f88e0e to your computer and use it in GitHub Desktop.
DelagateLogging
package com.dlmu.agent.server;
import net.bytebuddy.implementation.bind.annotation.Origin;
import java.lang.reflect.Method;
/**
* Created by fupan on 16-4-9.
*/
public class DelagateLogging {
public static void logging(@Origin Method method) {
System.out.println("logging");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment