sonatype-lift[bot] commented on code in PR #1568: URL: https://github.com/apache/solr/pull/1568#discussion_r1167564372
########## solr/core/src/java/org/apache/solr/util/cli/ToolBase.java: ########## @@ -0,0 +1,55 @@ +package org.apache.solr.util.cli; + +import java.io.PrintStream; +import org.apache.commons.cli.CommandLine; +import org.apache.solr.util.CLIO; +import org.apache.solr.util.SolrCLI; + +public abstract class ToolBase implements Tool { + + protected PrintStream stdout; + protected boolean verbose = false; + + protected ToolBase() { + this(CLIO.getOutStream()); + } + + protected ToolBase(PrintStream stdout) { + this.stdout = stdout; + } + + protected void echoIfVerbose(final String msg, CommandLine cli) { + if (cli.hasOption(SolrCLI.OPTION_VERBOSE.getOpt())) { + echo(msg); + } + } + + protected void echo(final String msg) { + stdout.println(msg); + } + + @Override + public int runTool(CommandLine cli) throws Exception { + verbose = cli.hasOption(SolrCLI.OPTION_VERBOSE.getOpt()); + + int toolExitStatus = 0; + try { + runImpl(cli); + } catch (Exception exc) { + // since this is a CLI, spare the user the stacktrace + String excMsg = exc.getMessage(); + if (excMsg != null) { + CLIO.err("\nERROR: " + excMsg + "\n"); + if (verbose) { + exc.printStackTrace(CLIO.getErrStream()); Review Comment: <picture><img alt="0% of developers fix this issue" src="https://lift.sonatype.com/api/commentimage/fixrate/0/display.svg"></picture> <b>*[INFORMATION_EXPOSURE_THROUGH_AN_ERROR_MESSAGE](https://find-sec-bugs.github.io/bugs.htm#INFORMATION_EXPOSURE_THROUGH_AN_ERROR_MESSAGE):</b>* Possible information exposure through an error message --- <details><summary>âšī¸ Expand to see all <b>@sonatype-lift</b> commands</summary> You can reply with the following commands. For example, reply with ***@sonatype-lift ignoreall*** to leave out all findings. | **Command** | **Usage** | | ------------- | ------------- | | `@sonatype-lift ignore` | Leave out the above finding from this PR | | `@sonatype-lift ignoreall` | Leave out all the existing findings from this PR | | `@sonatype-lift exclude <file\|issue\|path\|tool>` | Exclude specified `file\|issue\|path\|tool` from Lift findings by updating your config.toml file | **Note:** When talking to LiftBot, you need to **refresh** the page to see its response. <sub>[Click here](https://github.com/apps/sonatype-lift/installations/new) to add LiftBot to another repo.</sub></details> --- <b>Help us improve LIFT! (<i>Sonatype LiftBot external survey</i>)</b> Was this a good recommendation for you? <sub><small>Answering this survey will not impact your Lift settings.</small></sub> [â[đ Not relevant](https://www.sonatype.com/lift-comment-rating?comment=492155107&lift_comment_rating=1) â] - [â[đ Won't fix](https://www.sonatype.com/lift-comment-rating?comment=492155107&lift_comment_rating=2) â] - [â[đ Not critical, will fix](https://www.sonatype.com/lift-comment-rating?comment=492155107&lift_comment_rating=3) â] - [â[đ Critical, will fix](https://www.sonatype.com/lift-comment-rating?comment=492155107&lift_comment_rating=4) â] - [â[đ Critical, fixing now](https://www.sonatype.com/lift-comment-rating?comment=492155107&lift_comment_rating=5) â] -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org