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

test: tweak logging

parent 8c93d9ac
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,8 @@ import matplotlib.pyplot as plt
import argparse
import logging
logging.basicConfig(level=logging.WARNING)
logging.basicConfig(format='%(message)s',
level=logging.WARNING)
from .. import load_ifo, gwinc
......@@ -79,7 +80,7 @@ def main():
if max(frac) < 0.01:
continue
logging.warning("Excessive difference: {}".format(name))
logging.warning("EXCESSIVE DIFFERENCE: '{}'".format(name))
logging.warning(" max: {:e}, min: {:e}".format(max(frac), min(frac)))
diffs[name] = frac
......
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