Skip to content

Commit

Permalink
chore: Reduce logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfschoen committed Jan 3, 2025
1 parent 9cdc5a5 commit ec1f5bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/hardhat/helpers/writeDeployed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ async function writeDeployed (newDeployed: any) {
const newJsonData = JSON.stringify(newDeployed, null, 2);

await writeFile(filePath, newJsonData, { flag: 'w+' });
console.log("Updated deployed.json hardhat: ", newJsonData);
// console.log("Updated deployed.json hardhat: ", newJsonData);
console.log("Updated deployed.json hardhat");
} catch (err) {
console.log(err);
}
Expand Down
3 changes: 2 additions & 1 deletion packages/secret-contracts-scripts/src/writeDeployed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ async function writeDeployed (newDeployed: any) {
let newJsonData = JSON.stringify(newDeployed, null, 2);

await writeFile(filePath, newJsonData, { flag: 'w+' });
console.log("Updated deployed.json secret-contracts-scripts: ", newJsonData);
// console.log("Updated deployed.json secret-contracts-scripts: ", newJsonData);
console.log("Updated deployed.json secret-contracts-scripts");
} catch (err) {
console.error(err);
}
Expand Down

0 comments on commit ec1f5bb

Please sign in to comment.