Skip to content

Commit

Permalink
feat(output): Improve clarity of Detect status output (IDETECT-2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
crowleySynopsys committed Jun 3, 2020
1 parent c9adfb0 commit 6dab26f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -87,7 +87,7 @@ public void logDetectStatus(final IntLogger logger, final List<Status> statusSum
previousSummaryClass = status.getClass();
}

logger.info(String.format("Overall Status: %s", exitCodeType.toString()));
logger.info(String.format("Overall Status: %s - %s", exitCodeType.toString(), exitCodeType.getDescription()));
logger.info("");
logger.info("===============================");
logger.info("");
Expand Down
Expand Up @@ -30,6 +30,6 @@ public SignatureScanStatus(final String scanTargetPath, final Result result) {
}

public SignatureScanStatus(final String scanTargetPath, final StatusType statusType) {
super("Scan Target " + scanTargetPath, statusType);
super("Signature scan / Snippet scan on " + scanTargetPath, statusType);
}
}

0 comments on commit 6dab26f

Please sign in to comment.