Skip to content

Commit

Permalink
small logging bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 3, 2018
1 parent 96a6acb commit a7f2847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lenskit/batch/_multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ def run(self):
ds_part = ds_attrs.get('Partition', None)
cand = cand_f(train)

_logger.info('starting run %d: %s on %s:%d', run_id, arec.algorithm,
_logger.info('starting run %d: %s on %s:%s', run_id, arec.algorithm,
ds_name, ds_part)
run = self._run_algo(run_id, arec, (train, test, ds_attrs, cand))
_logger.info('finished run %d: %s on %s:%d', run_id, arec.algorithm,
_logger.info('finished run %d: %s on %s:%s', run_id, arec.algorithm,
ds_name, ds_part)
run_data.append(run)
run_df = pd.DataFrame(run_data)
Expand Down

0 comments on commit a7f2847

Please sign in to comment.