Skip to content

Commit 6127640

Browse files
committed
logging: Use wording from jazzer for logging corpus inputs on startup
Also changes logging the corpus inputs from printing to stdout to printing to stderr
1 parent e74e7bc commit 6127640

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export async function startFuzzing(options: Options) {
158158
function logInfoAboutFuzzerOptions(fuzzerOptions: string[]) {
159159
fuzzerOptions.slice(1).forEach((element) => {
160160
if (element.length > 0 && element[0] != "-") {
161-
console.log("INFO: seed corpus: input file:", element);
161+
console.error("INFO: using inputs from:", element);
162162
}
163163
});
164164
}

0 commit comments

Comments
 (0)