ApeWorX / ape-solidity

Solidity compiler plugin for the Ape Framework
https://www.apeworx.io/
Apache License 2.0
17 stars 24 forks source link

fix: take into account verbosity when showing SolcError [APE-1558] #126

Closed antazoey closed 10 months ago

antazoey commented 10 months ago

What I did

people said the SolcError was too verbose in some cases, so now it is less so (unless you are specifically looking for verbose errors)

How I did it

Only show message if not verbose. Else, show the full deal (like we were doing)

How to verify it

ape compile  # less error
ape compile -v DEBUG   # more error

Checklist