Skip to content

Commit

Permalink
Convert a print to logging.debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiffyclub committed Jun 23, 2014
1 parent b3f8e6c commit b23acf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion urbansim/models/lcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ def _iter_groups(self, data):
groups = data.groupby(self.segmentation_col)

for name, group in groups:
print("Returning group %s" % str(name))
logger.debug(
'returning group {} in LCM group {}'.format(name, self.name))
yield name, group

def fit(self, choosers, alternatives, current_choice):
Expand Down

0 comments on commit b23acf4

Please sign in to comment.