From 30cc96d23784f2b0607cc13d2e9e7929f10f954d Mon Sep 17 00:00:00 2001
From: Jameson Graef Rollins <jameson.rollins@ligo.org>
Date: Tue, 7 Jul 2020 13:02:38 -0700
Subject: [PATCH] nb: add debug logging for calc

---
 gwinc/nb.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gwinc/nb.py b/gwinc/nb.py
index 69f406f..437baea 100644
--- a/gwinc/nb.py
+++ b/gwinc/nb.py
@@ -434,12 +434,14 @@ class Budget(Noise):
         # calc all calibrations
         c = {}
         for name, cal in self._cal_objs.items():
+            logger.debug("calc {}".format(name))
             c[name] = cal.calc()
         # calc all noises
         for name, noise in self._noise_objs.items():
             cals = [c[cal] for cal in self._noise_cals[name]]
             if calibrations:
                 cals += calibrations
+            logger.debug("calc {}".format(name))
             d[name] = noise.calc_trace(
                 calibrations=cals,
             )
-- 
GitLab