Skip to content

Commit

Permalink
Merge pull request #1002 from petertdavies/daemon-log-spam
Browse files Browse the repository at this point in the history
Suppress daemon log spam
  • Loading branch information
petertdavies authored Sep 9, 2024
2 parents 1e9a6e5 + de3bac5 commit 091ebc5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ethereum_spec_tools/evm_tools/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ def daemon_arguments(subparsers: argparse._SubParsersAction) -> None:


class _EvmToolHandler(BaseHTTPRequestHandler):
def log_request(self, *args):
"""Don't log requests"""
pass

def do_POST(self) -> None:
from . import main

Expand Down

0 comments on commit 091ebc5

Please sign in to comment.