Skip to content

Commit

Permalink
Merge pull request #389 from claritychallenge/387-change-level-of-log…
Browse files Browse the repository at this point in the history
…ging

Change logging level in camfit code
  • Loading branch information
jonbarker68 committed Jun 19, 2024
2 parents c20c317 + 3f088bd commit 2589665
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clarity/enhancer/gha/gainrule_camfit.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

from clarity.enhancer.gha.gha_utils import FittingParams

logging.basicConfig(level=logging.INFO)


def compute_proportion_overlap(
a1: float,
Expand Down Expand Up @@ -479,6 +481,6 @@ def gainrule_camfit_compr(
)
noisegate_slope[:, i] = noisegateslope * np.ones(np.size(sFitmodel_frequencies))

logging.info("Noisegate levels are %s", noisegate_level)
logging.debug("Noisegate levels are %s", noisegate_level)

return sGt, noisegate_level, noisegate_slope

0 comments on commit 2589665

Please sign in to comment.