plugins.adhoc: Remove some stray debugging

Tue, 21 Sep 2010 14:06:56 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 21 Sep 2010 14:06:56 +0100
changeset 145
96efa9ee8f18
parent 144
46e933d81024
child 148
386920f05808

plugins.adhoc: Remove some stray debugging

plugins/adhoc.lua file | annotate | diff | comparison | revisions
--- a/plugins/adhoc.lua	Fri Sep 17 16:42:50 2010 +0100
+++ b/plugins/adhoc.lua	Tue Sep 21 14:06:56 2010 +0100
@@ -88,11 +88,9 @@
 
 -- Initial execution of a command
 function command_mt:execute()
-	io.write(":execute()\n");
 	local iq = verse.iq({ to = self.jid, type = "set" })
 		:tag("command", { xmlns = xmlns_commands, node = self.command });
 	self.stream:send_iq(iq, function (result)
-		io.write(":send_iq() response\n");
 		self:_process_response(result);
 	end);
 end

mercurial