Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit a156761

Browse files
committed
Add some additional init logs for the parser
1 parent 2f9913e commit a156761

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

parser-sdk/nodejs/parser-wrapper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ async function updateScanStatus(findings) {
5858
}
5959

6060
async function main() {
61+
console.log("Starting Parser")
6162
const resultFileUrl = process.argv[2];
6263
const resultUploadUrl = process.argv[3];
6364

65+
console.log("Fetching result file")
6466
const { data } = await axios.get(resultFileUrl);
65-
67+
console.log("Fetched result file")
6668
const findings = await parse(data);
6769
console.log(`Transformed raw result file into ${findings.length} findings`);
6870

0 commit comments

Comments
 (0)