Skip to content

Commit 1571eb5

Browse files
committed
Fix logging
1 parent 1cb5630 commit 1571eb5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fact_funfolding/scripts/unfold_observations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def main(
5555
threshold = threshold or config.threshold
5656
theta2_cut = theta2_cut or config.theta2_cut
5757

58-
log.info('Using threshold', threshold)
59-
log.info('Using theta2 cut', theta2_cut)
58+
log.info(f'Using threshold {threshold}')
59+
log.info(f'Using theta2 cut {theta2_cut}')
6060

6161
# define binning in e_est and e_true
6262
bins_obs = logspace_binning(

fact_funfolding/scripts/unfold_simulations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def main(
5757
threshold = threshold or config.threshold
5858
theta2_cut = theta2_cut or config.theta2_cut
5959

60-
log.info('Using threshold', threshold)
61-
log.info('Using theta2 cut', theta2_cut)
60+
log.info(f'Using threshold {threshold}')
61+
log.info(f'Using theta2 cut {theta2_cut}')
6262

6363
# define binning in e_est and e_true
6464
bins_obs = logspace_binning(

0 commit comments

Comments
 (0)