elevate loglevel of failed pathfinder activation

This commit is contained in:
Adarnof 2016-04-29 21:53:23 -04:00
parent f160165c00
commit 09f10b383c

View File

@ -116,7 +116,7 @@ class pathfinderManager:
return username_clean, plain_password return username_clean, plain_password
except: except:
logger.debug("Unsuccessful attempt at adding user %s to pathfinder on add_user" % username) logger.exception("Unsuccessful attempt at adding user %s to pathfinder on add_user" % username)
return "","" return "",""
else: else:
logger.debug("pathfinder username %s already exists Updating instead" % username) logger.debug("pathfinder username %s already exists Updating instead" % username)
@ -193,4 +193,4 @@ class pathfinderManager:
logger.debug("Found user %s email on pathfinder" % username) logger.debug("Found user %s email on pathfinder" % username)
return True return True
logger.debug("User %s email not found on pathfinder" % username) logger.debug("User %s email not found on pathfinder" % username)
return False return False