convert print to debug statement >.<

This commit is contained in:
blitzmann
2017-04-10 21:32:26 -04:00
parent 4e74555b5d
commit 50e604f412

View File

@@ -452,7 +452,7 @@ class Item(EqBase):
db_price = eos.db.getPrice(self.ID)
# do not yet have a price in the database for this item, create one
if db_price is None:
print "Creating a price for {}".format(self.ID)
pyfalog.debug("Creating a price for {}".format(self.ID))
self.__price = types_Price(self.ID)
eos.db.add(self.__price)
eos.db.commit()