Solhint

Solhint

Community Analyzer

No console.log/logInt/logBytesX/logString/etc & No hardhat and forge-std console.sol import statements SOLHINT-W1007

Anti-pattern
Major

No console.log/logInt/logBytesX/logString/etc & No hardhat and forge-std console.sol import statements.

Bad Practice

  1. No console.logX statements
console.log('test')
  1. No hardhat/console.sol import statements
import "hardhat/console.sol"
  1. No forge-std console.sol & console2.sol import statements
import "forge-std/consoleN.sol"

Learn more

no-console on Solhint's documentation.