diff --git a/src/pg_rad/plotting/landscape_plotter.py b/src/pg_rad/plotting/landscape_plotter.py index 3c42d8c..1a1ab51 100644 --- a/src/pg_rad/plotting/landscape_plotter.py +++ b/src/pg_rad/plotting/landscape_plotter.py @@ -7,6 +7,7 @@ from matplotlib.patches import Circle from pg_rad.landscape.landscape import Landscape logger = logging.getLogger(__name__) +plt.set_loglevel(level='warning') class LandscapeSlicePlotter: diff --git a/src/pg_rad/plotting/result_plotter.py b/src/pg_rad/plotting/result_plotter.py index d1f2f7a..4406cff 100644 --- a/src/pg_rad/plotting/result_plotter.py +++ b/src/pg_rad/plotting/result_plotter.py @@ -10,6 +10,9 @@ from pg_rad.simulator.outputs import SimulationOutput from pg_rad.landscape.landscape import Landscape +plt.set_loglevel(level='warning') + + class ResultPlotter: def __init__(self, landscape: Landscape, output: SimulationOutput): self.landscape = landscape