Skip to content

Commit

Permalink
Reduce Max Line Length
Browse files Browse the repository at this point in the history
  • Loading branch information
ForbesLindesay committed May 22, 2012
1 parent faa5dd2 commit bf73fb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Expand Up @@ -77,7 +77,8 @@ function tester(req, verb){
}
}
if(module.exports.log){
console.log('Check Permission: ' + (req.user.id||req.user.name||"user") + "."+(verb||'can')+"('" + action + "') -> " + (result === true));
console.log('Check Permission: ' + (req.user.id||req.user.name||"user") +
"."+(verb||'can')+"('" + action + "') -> " + (result === true));
}
return (result === true);
};
Expand Down

0 comments on commit bf73fb4

Please sign in to comment.