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

set default log level to warning

parent ac2ac7bf
No related branches found
No related tags found
No related merge requests found
Pipeline #104302 passed
......@@ -6,8 +6,10 @@ import numpy as np
from IPython.terminal.embed import InteractiveShellEmbed
import logging
logging.basicConfig(format='%(message)s',
level=os.getenv('LOG_LEVEL', logging.INFO))
logging.basicConfig(
format='%(message)s',
level=os.getenv('LOG_LEVEL', logging.WARNING),
)
from . import IFOS, load_budget, plot_noise
......
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