Changeset 2513
- Timestamp:
- 09/27/05 20:42:52 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storage.py
r2459 r2513 306 306 if self.User.OverCharge != 1.0 : # TODO : beware of rounding errors 307 307 overcharged = totalprice * self.User.OverCharge 308 self.parent.tool. printInfo("Overcharging %s by a factor of %s ===> User %s will be charged for %s units." % (totalprice, self.User.OverCharge, self.User.Name, overcharged))308 self.parent.tool.logdebug("Overcharging %s by a factor of %s ===> User %s will be charged for %s units." % (totalprice, self.User.OverCharge, self.User.Name, overcharged)) 309 309 return overcharged 310 310 else :