Skip to content

Commit

Permalink
Remove logger.debug rockstor#688
Browse files Browse the repository at this point in the history
  • Loading branch information
Mchakravartula committed Jun 24, 2015
1 parent a0d9db7 commit 4b24c54
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/rockstor/storageadmin/views/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ def post(self, request):
user_exists = False
for u in users:
if (u.username == invar['username']):
logger.debug('uid = %d gid = %d invar = %s' % (u.uid, u.gid, invar))
if ((invar['uid'] is None or u.uid == invar['uid']) and
(invar['gid'] is None or u.gid == invar['gid'])):
user_exists = True
Expand Down

0 comments on commit 4b24c54

Please sign in to comment.