authform: fix a logging debug (logger take 1 parameter not 2)

This commit is contained in:
Jérôme Schneider 2013-06-05 15:48:01 +02:00
parent affb13dea2
commit 6cf83e4822
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ a password_field key if you want to encode a password.")
unique_id: idp uinique id
post_values: dict with the post values
"""
logger.debug('AuthForm._save_association', 'Save a new association')
logger.debug('AuthForm._save_association: save a new association')
sp_login = post_values[self.form_values['username_field']]
if config.encrypt_sp_password:
password = self.encrypt_pwd(post_values[self.form_values['password_field']])