Skip to content

Commit

Permalink
add optional verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Jul 20, 2024
1 parent 533fe4f commit 211e556
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aurora/transfer_function/regression/m_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ def compute_squared_coherence(self) -> None:
},
)

# if self.iter_control.verbosity > 1:
# msg = f"squared coherence {list(self.R2.coords['output_channel'].values)} {R2}"
# logger.info(msg)
if self.iter_control.verbosity > 1:
msg = f"squared coherence {list(self.R2.coords['output_channel'].values)} {R2}"
logger.info(msg)
return

def compute_noise_covariance(self):
Expand Down

0 comments on commit 211e556

Please sign in to comment.