# File lib/god/contacts/campfire.rb, line 56
      def notify(message, time, priority, category, host)
        begin
          body = Campfire.format.call(message,host)

          room.speak body

          self.info = "notified campfire: #{Campfire.server_settings[:subdomain]}"
        rescue => e
          applog(nil, :info, "failed to notify campfire: #{e.message}")
          applog(nil, :debug, e.backtrace.join("\n"))
        end
      end