mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-07 01:39:08 +00:00
* changed python version to 3.8.rc and removed wireshark from build. also added a plugin to supress scapy's warnings about the manuf * changed to alpine 3.10, on docker file and removed unnecessary logging suppression * changed to python 3.7 * changed base image on builder as well
6 lines
169 B
Python
6 lines
169 B
Python
import logging
|
|
|
|
# Supress logging from scapy
|
|
logging.getLogger("scapy.runtime").setLevel(logging.CRITICAL)
|
|
logging.getLogger("scapy.loading").setLevel(logging.CRITICAL)
|