Skip to content

Commit

Permalink
logging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderdeseyn committed Oct 30, 2020
1 parent 4cd7920 commit f24cbdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ task("watch", "Start the file watcher").setAction(
try {
await run(task.command, task.params);
} catch (err) {
logVerbose(`Task "${task.command}" failed.`);
logVerbose(err);
console.log(`Task "${task.command}" failed.`);
console.log(err);
}
}
})
Expand Down
1 change: 1 addition & 0 deletions test/fixture-projects/hardhat-project/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config: HardhatUserConfig = {
defaultNetwork: "hardhat",
watcher: {
tasks: ["clean", { command: "compile", params: { quiet: true } }],
files: ["./contracts"],
verbose: true,
},
};
Expand Down

0 comments on commit f24cbdb

Please sign in to comment.