summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2008-01-21 09:49:46 +0000
committerpixel <pixel>2008-01-21 09:49:46 +0000
commit40b7e7cd989b6799bdf92e3980056c8a92b44627 (patch)
tree6674d4cbfc715b2c2778671250a0ddd96a6a906b /lib
parent83c691c8e4df93d2688b62a08de7f50627b4d65d (diff)
Removing debug messages.
Diffstat (limited to 'lib')
-rw-r--r--lib/LuaTask.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/LuaTask.cc b/lib/LuaTask.cc
index a5dd63e..45d19c1 100644
--- a/lib/LuaTask.cc
+++ b/lib/LuaTask.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaTask.cc,v 1.22 2008-01-21 09:45:32 pixel Exp $ */
+/* $Id: LuaTask.cc,v 1.23 2008-01-21 09:49:46 pixel Exp $ */
#include <LuaTask.h>
#include <LuaHandle.h>
@@ -312,23 +312,16 @@ void LuaTaskMan::pushstatics(Lua * L) throw (GeneralException) {
class DelayedTask : public Task {
public:
DelayedTask(Lua * __L, const String & _cmd, int _delay) : L(__L), cmd(_cmd), delay(_delay) {
- printm(M_INFO, "Creating object delayedtask, delay = %i seconds, cmd = " + cmd + ".\n", _delay);
SetBurst();
}
- ~DelayedTask() {
- printm(M_INFO, "DelayedTask: destroying object; current = %i\n", current);
- }
virtual int Do() throw (GeneralException) {
timeval delay_tv = { delay, 0 };
switch(current) {
case 0:
- printm(M_INFO, "DelayTask: initializing.\n");
WaitFor(delay_tv);
current = 1;
return TASK_ON_HOLD;
case 1:
- current = 2;
- printm(M_INFO, "DelayTask: expired, lauching LuaTask with cmd = " + cmd + "\n");
RemoveTimeout();
new LuaTask(L, cmd);
return TASK_DONE;
@@ -355,7 +348,6 @@ int sLua_TaskMan::TaskMan_proceed_statics(Lua * L, int n, int caller) {
cmd = L->tostring(1);
if (n == 2)
delay = L->tonumber(2);
- printm(M_INFO, "Creating delayed task of %i seconds.\n", delay);
new DelayedTask(L, cmd, delay);
break;
}