# HG changeset patch # User Marcin Kuzminski # Date 2017-03-03 19:11:35 # Node ID b11eecf91799c8b7303245e9cb40e4d8a65475d1 # Parent 7a6b1bb9c9ae6196f790b2c5c3b603f0b49bad7c authentication: add some more logging when extracting users. diff --git a/rhodecode/authentication/base.py b/rhodecode/authentication/base.py --- a/rhodecode/authentication/base.py +++ b/rhodecode/authentication/base.py @@ -332,6 +332,8 @@ class RhodeCodeAuthPluginBase(object): log.debug('provided username:`%s` is empty skipping...', username) if not user: log.debug('User `%s` not found in database', username) + else: + log.debug('Got DB user:%s', user) return user def user_activation_state(self):