remove puts statements

This commit is contained in:
Brian Smith 2014-02-23 21:04:02 -05:00
parent 7ff4184731
commit 69b4342731
2 changed files with 0 additions and 3 deletions

View File

@ -173,8 +173,6 @@ module JamRuby
hist.end_history if hist
puts "**************NOTIFICATION SESSION ENDED**************"
Notification.send_session_ended(session_id)
end

View File

@ -357,7 +357,6 @@ module JamRuby
# publish to all users who have a notification for this session
# TODO: do this in BULK or in async block
notifications.each do |n|
puts "*************SENDING SESSION_ENDED TO #{n.target_user_id}***************"
msg = @@message_factory.session_ended(n.target_user_id, session_id)
@@mq_router.publish_to_user(n.target_user_id, msg)
end