Skip to content
Snippets Groups Projects
Commit d7984940 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

reduce logging during plotting

parent fd30b183
No related branches found
No related tags found
No related merge requests found
......@@ -212,6 +212,7 @@ You may interact with plot using "plt." methods, e.g.:
# standard plotting
elif args.plot:
logging.info("plotting...")
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
plot_noise(
......
......@@ -102,7 +102,6 @@ def plot_noise(
if isinstance(noise, dict):
plot_dict(noise)
else:
logging.info("plotting '{}'...".format(name))
noise = noises[name]
stylekw = dict(
color = (0, 0, 0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment