Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Hettel committed Jul 27, 2015
1 parent 4a02647 commit 09dfd12
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ function isApprovedUser(payload) {
}

function isValidChannel(payload) {
console.log('channel', payload.channel_name);
console.log('not private group', payload.channel_name !== 'privategroup');
console.log('not direct message', payload.channel_name !== 'directmessage');
return payload.channel_name !== 'privategroup' && payload.channel_name !== 'directmessage';
}

Expand Down

0 comments on commit 09dfd12

Please sign in to comment.