[FIX] remove logging of false error

bzr revid: rim@openerp.com-20140409100313-zirmih0uzce19v2i
This commit is contained in:
Richard Mathot (OpenERP) 2014-04-09 12:03:13 +02:00
parent 9a23248546
commit 5d81ea0988
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class WebsiteSurvey(http.Controller):
# Test mode
if token and token == "phantom":
_logger.error("[survey] Phantom mode")
_logger.info("[survey] Phantom mode")
user_input_id = user_input_obj.create(cr, uid, {'survey_id': survey.id, 'test_entry': True}, context=context)
user_input = user_input_obj.browse(cr, uid, [user_input_id], context=context)[0]
data = {'survey': survey, 'page': None, 'token': user_input.token}