Change to use logger in db upgrade script

This commit is contained in:
Erik Johnston 2015-03-04 13:43:35 +00:00
parent 640e53935d
commit b4c38738f4

View file

@ -1,11 +1,14 @@
import json
import logging
logger = logging.getLogger(__name__)
def run_upgrade(cur):
cur.execute("SELECT id, regex FROM application_services_regex")
for row in cur.fetchall():
try:
print "checking %s..." % row[0]
logger.debug("Checking %s..." % row[0])
json.loads(row[1])
except ValueError:
# row isn't in json, make it so.