Read the code carefully
import logging
import sys
logging.basicConfig(level=logging.INFO, format="%(levelname)s:%(message)s", stream=sys.stdout, force=True)
logger = logging.getLogger("svc")
class HealthFilter(logging.Filter):
def filter(self, record):
return "/health" not in record.getMessage()
logger.addFilter(HealthFilter())
logger.debug("debug-line")
logger.info("starting")
logger.info("GET /health 200")
logger.warning("slow query")
print("done")
What will the program print? Write here: