Suppress matplot debug logs

This commit is contained in:
Lucas Armand
2025-10-10 11:57:46 -07:00
parent a00c1adab5
commit 3988cf553f
+2
View File
@@ -16,6 +16,8 @@ import re
# Headless plotting # Headless plotting
import matplotlib import matplotlib
matplotlib.use("Agg") matplotlib.use("Agg")
import logging
logging.getLogger("matplotlib.font_manager").setLevel(logging.WARNING)
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import numpy as np import numpy as np
from concurrent.futures import ThreadPoolExecutor, wait, FIRST_COMPLETED from concurrent.futures import ThreadPoolExecutor, wait, FIRST_COMPLETED