##// END OF EJS Templates
logging: improve logging on failed auth user lookup
marcink -
r77:f0ab3c53 default
parent child Browse files
Show More
@@ -799,7 +799,7 b' class AuthUser(object):'
799 log.debug('No data in %s that could been used to log in' % self)
799 log.debug('No data in %s that could been used to log in' % self)
800
800
801 if not is_user_loaded:
801 if not is_user_loaded:
802 log.debug('Failed to load user. Fallback to default user')
802 log.debug('Failed to load user %s. Fallback to default user', self)
803 # if we cannot authenticate user try anonymous
803 # if we cannot authenticate user try anonymous
804 if anon_user.active:
804 if anon_user.active:
805 user_model.fill_data(self, user_id=anon_user.user_id)
805 user_model.fill_data(self, user_id=anon_user.user_id)
General Comments 0
You need to be logged in to leave comments. Login now