logger instead of debug

This commit is contained in:
danielvincent 2010-10-05 17:52:21 -07:00
parent d890b57b13
commit a063207a0a

View file

@ -35,7 +35,7 @@ class MessageHandler
http.callback {process}
when :hub_publish
http = EventMachine::PubSubHubbub.new(query.destination).publish :timeout => TIMEOUT
http.callback {process; Rails.logger.debug(http.response)}
http.callback {Rails.logger.info(http.response); process}
else
raise "message is not a type I know!"
end