From 50e604f41253ba90e1fb32d8aa37a5228eaf7044 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 10 Apr 2017 21:32:26 -0400 Subject: [PATCH] convert print to debug statement >.< --- eos/gamedata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/gamedata.py b/eos/gamedata.py index 9cbb28a3b..8700229dc 100644 --- a/eos/gamedata.py +++ b/eos/gamedata.py @@ -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()