Skip to content

Commit

Permalink
usage information should include example key when -Ddetail is passed
Browse files Browse the repository at this point in the history
  • Loading branch information
aegershman committed Apr 26, 2021
1 parent 188eb90 commit f3b4d3f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ private void writeRecipeDescriptor(RecipeDescriptor rd, boolean verbose, int cur
getLog().info(indent(indentLevel + 1, od.getName() + ": " + od.getType() + (od.isRequired() ? "!" : "")));
getLog().info(indent(indentLevel + 2, "displayName: " + od.getDisplayName()));
getLog().info(indent(indentLevel + 2, "description: " + od.getDescription()));
getLog().info(indent(indentLevel + 2, (od.getExample() == null ? "" : "example: " + od.getExample())));
}
}

Expand Down

0 comments on commit f3b4d3f

Please sign in to comment.