Remove debugging prints or move them to pyfalog

This commit is contained in:
DarkPhoenix
2019-03-23 14:01:43 +03:00
parent 87a246204b
commit 48ac6cb2af
10 changed files with 20 additions and 33 deletions

View File

@@ -155,7 +155,6 @@ class Esi(EsiAccess):
res.json()
)
cdata = res.json()
print(cdata)
currentCharacter = self.getSsoCharacter(cdata['CharacterName'])

View File

@@ -50,7 +50,7 @@ class DeferRecalc:
def __enter__(self):
self._recalc = self.sFit.recalc
self.sFit.recalc = lambda x: print('Deferred Recalc')
self.sFit.recalc = lambda x: pyfalog.debug('Deferred Recalc')
def __exit__(self, *args):
self.sFit.recalc = self._recalc