External Plugin
This is a third-party plugin. Please report issues in its Github Repository
Remove Hardhat console.log
imports and calls from Solidity source code.
This plugin is intended in part to keep version-controlled code free of log statements. To remove logs from compiled contracts while preserving them in source code, see hardhat-preprocessor.
Versions of this plugin prior to
2.0.0
were released asbuidler-log-remover
.
yarn add --dev hardhat-log-remover
Load plugin in Hardhat config:
require('hardhat-log-remover');
Run the Hardhat task manually:
yarn run hardhat remove-logs
Before removing logs, the plugin will ensure that all contracts can be compiled successfully.
Run the unit tests with Mocha:
yarn run mocha