Skip to content
Snippets Groups Projects
Commit e481d05d authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Improve warning messages when overwriting the WFG

parent f414636b
No related branches found
No related tags found
No related merge requests found
......@@ -92,9 +92,12 @@ class GravitationalWaveTransient(likelihood.Likelihood):
wfg_attr = getattr(self.waveform_generator, attr)
ifo_attr = getattr(self.interferometers, attr)
if wfg_attr is None:
logging.debug(
"The waveform_generator {} is None. Setting from the "
"provided interferometers.".format(attr))
setattr(self.waveform_generator, attr, ifo_attr)
elif wfg_attr != ifo_attr:
logging.debug(
logging.warning(
"The waveform_generator {} is not equal to that of the "
"provided interferometers. Overwriting the "
"waveform_generator.".format(attr))
......
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