Changeset - 9893c2fc846b
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-10-19 00:56:18
marcin@python-works.com
removed raise from log user action
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/utils.py
Show inline comments
 
@@ -88,10 +88,10 @@ def action_logger(user, action, repo, ip
 
        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))
 

	
0 comments (0 inline, 0 general)