From a9c6394c4332c6cc023fca1a31e29383a7d68e72 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Wed, 14 May 2014 16:19:00 +1000 Subject: Shut up some excess debugs. --- src/LuaSL/LuaSL_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/LuaSL/LuaSL_main.c') diff --git a/src/LuaSL/LuaSL_main.c b/src/LuaSL/LuaSL_main.c index 017c742..4d589a1 100644 --- a/src/LuaSL/LuaSL_main.c +++ b/src/LuaSL/LuaSL_main.c @@ -13,7 +13,7 @@ static Eina_Bool _sleep_timer_cb(void *data) script *script = data; gameGlobals *ourGlobals = script->game; - PD("Waking up %s", script->name); +// PD("Waking up %s", script->name); sendToChannel(ourGlobals, script->SID, "return 0.0"); return ECORE_CALLBACK_CANCEL; } @@ -49,7 +49,7 @@ static void resetScript(script *victim) script *me; char buf[PATH_MAX]; - PD("RESETTING %s", victim->name); +// PD("RESETTING %s", victim->name); sendToChannel(ourGlobals, victim->SID, "quit()"); eina_hash_del(ourGlobals->scripts, victim->SID, NULL); @@ -111,7 +111,7 @@ void scriptSendBack(void * data) sendToChannel(ourGlobals, them->SID, "start()"); else sendToChannel(ourGlobals, them->SID, "stop()"); - PD("Stopped %s", them->name); +// PD("Stopped %s", them->name); } else PE("Missing script state in llSetScriptState(%s, )", them->name); -- cgit v1.1