I want to create a template in Eclipse for printing a log starting from the method signature in the following way:
void myMethod(Type1 param1, Type2 param2){
logger.info("myMethod() - [param1: " + param1 + ", param2: " + param2 + "]");
}
I tried to use the ${enclosing_method_arguments}
variable, but I cannot find yet a solution.