Skip to content

Commit

Permalink
Suppress warning Symbolic Execution not available: No module named 'm…
Browse files Browse the repository at this point in the history
…ythril'
  • Loading branch information
medvedev1088 committed Aug 8, 2021
1 parent 55a9371 commit 90afaab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions blockchainetl/logging_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ def logging_basic_config(filename=None):
logging.basicConfig(level=logging.INFO, format=format, filename=filename)
else:
logging.basicConfig(level=logging.INFO, format=format)

logging.getLogger('ethereum_dasm.evmdasm').setLevel(logging.ERROR)
4 changes: 4 additions & 0 deletions ethereumetl/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from blockchainetl.logging_utils import logging_basic_config
logging_basic_config()

import click

from ethereumetl.cli.export_all import export_all
Expand Down

0 comments on commit 90afaab

Please sign in to comment.