# HG changeset patch # User Marcin Kuzminski # Date 1287442578 -7200 # Node ID 9893c2fc846b1cb7048c9aa6cdedb320514d8bc9 # Parent 19a62a5490fef7b514bd892a3699bf5ef1de82c8 removed raise from log user action diff -r 19a62a5490fe -r 9893c2fc846b rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py Tue Oct 19 00:55:05 2010 +0200 +++ b/rhodecode/lib/utils.py Tue Oct 19 00:56:18 2010 +0200 @@ -88,10 +88,10 @@ user_log.user_ip = ipaddr sa.add(user_log) sa.commit() + log.info('Adding user %s, action %s on %s', user.username, action, repo) except Exception, e: - raise sa.rollback() log.error('could not log user action:%s', str(e))