Switch the corp information line to use logger instead of print

This commit is contained in:
2010-11-03 11:18:28 +00:00
parent 9d900b7141
commit b8415f294f

View File

@@ -102,5 +102,5 @@ class CorporationUpdate():
def job(self, args): def job(self, args):
for corp in set(EVEPlayerCorporation.objects.filter(eveplayercharacter__in=EVEPlayerCharacter.objects.all())): for corp in set(EVEPlayerCorporation.objects.filter(eveplayercharacter__in=EVEPlayerCharacter.objects.all())):
print corp self._logger.debug('Updating %s' % corp)
corp.query_and_update_corp() corp.query_and_update_corp()