Skip to content

Commit

Permalink
Remove overly verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Dec 8, 2023
1 parent 3d71b06 commit 2b56402
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ public void visitClassDef(JCTree.JCClassDecl classDecl) {
String classNameIncludingOuter = descriptor.classDecl.sym.packge().toString().isEmpty() ?
descriptor.classDecl.sym.className() :
descriptor.classDecl.sym.className().substring(descriptor.classDecl.sym.packge().toString().length() + 1);
processingEnv.getMessager().printMessage(Kind.NOTE, "Generating template for " + classNameIncludingOuter);

String templateFqn = classDecl.sym.fullname.toString() + "Recipe";
String templateCode = copy.toString().trim();
Expand Down

0 comments on commit 2b56402

Please sign in to comment.