Skip to content

Commit

Permalink
improve output
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Dec 17, 2024
1 parent 00a435a commit 3735137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ <T> void traceBeanResolved(
System.out.print(prefix);
System.out.print(bean != null ? "✅ " : "❌ ");
if (bean != null) {
System.out.print(AnsiColour.formatObject(bean));
if (qualifier != null) {
if (qualifier instanceof Named named) {
System.out.print(AnsiColour.yellow("@Named("));
Expand All @@ -176,6 +175,7 @@ <T> void traceBeanResolved(
}
System.out.print(" ");
}
System.out.print(AnsiColour.formatObject(bean));
} else {
System.out.print("Bean of type ");
System.out.print(beanType.getBeanTypeString(TypeInformation.TypeFormat.ANSI_SIMPLE));
Expand Down

0 comments on commit 3735137

Please sign in to comment.