Lowered loglevel for evelink.APIError

Prevents unnecessary notifications when getting info for a corp with a bad corp ID
This commit is contained in:
Adarnof 2016-02-17 17:08:22 -05:00
parent 0622d2f146
commit bfef9c3123

View File

@ -170,7 +170,7 @@ class EveApiManager():
logger.debug("Confirmed id %s is a corp." % corp_id)
return True
except evelink.api.APIError as error:
logger.exception("APIError occured while checking if id %s is corp. Possibly not corp?" % corp_id)
logger.debug("APIError occured while checking if id %s is corp. Possibly not corp?" % corp_id)
logger.debug("Unable to verify id %s is corp." % corp_id)
return False