Add logging

This commit is contained in:
rnhmjoj 2015-06-23 01:42:49 +02:00
parent 30ae194420
commit 8e68af8277

View File

@ -82,6 +82,7 @@ module.exports = (robot) ->
done = ['fatto', 'ecco qui', 'ecco']
group_list (list) ->
chat = res.match[4]
user = res.message.user.name
if not chat in list
res.send res.random nope
return
@ -89,5 +90,7 @@ module.exports = (robot) ->
res.send res.random denied
return
res.send res.random ok
run_command "chat_add_user #{chat} #{res.message.user.name}"
res.send res.random done
run_command "chat_add_user #{chat} #{user}", (reply) ->
robot.logger.info "add user #{user} to chat #{chat}"
robot.logger.info 'result: ' + reply
res.send res.random done