Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Dec 3, 2019
1 parent 1cb5630 commit 1571eb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fact_funfolding/scripts/unfold_observations.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def main(
threshold = threshold or config.threshold
theta2_cut = theta2_cut or config.theta2_cut

log.info('Using threshold', threshold)
log.info('Using theta2 cut', theta2_cut)
log.info(f'Using threshold {threshold}')
log.info(f'Using theta2 cut {theta2_cut}')

# define binning in e_est and e_true
bins_obs = logspace_binning(
Expand Down
4 changes: 2 additions & 2 deletions fact_funfolding/scripts/unfold_simulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def main(
threshold = threshold or config.threshold
theta2_cut = theta2_cut or config.theta2_cut

log.info('Using threshold', threshold)
log.info('Using theta2 cut', theta2_cut)
log.info(f'Using threshold {threshold}')
log.info(f'Using theta2 cut {theta2_cut}')

# define binning in e_est and e_true
bins_obs = logspace_binning(
Expand Down

0 comments on commit 1571eb5

Please sign in to comment.