From 18a3133823522b7d0454b59e48e9c066f5d15d1e Mon Sep 17 00:00:00 2001
From: pixel <pixel>
Date: Mon, 21 Jan 2008 17:22:41 +0000
Subject: Removing debug messages.

---
 lib/LuaHttp.cc | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

(limited to 'lib')

diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc
index 375de3e..2cd13f9 100644
--- a/lib/LuaHttp.cc
+++ b/lib/LuaHttp.cc
@@ -17,7 +17,7 @@
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-/* $Id: LuaHttp.cc,v 1.23 2007-10-12 13:04:38 pixel Exp $ */
+/* $Id: LuaHttp.cc,v 1.24 2008-01-21 17:22:41 pixel Exp $ */
 
 #include "Domain.h"
 #include "LuaHttp.h"
@@ -454,27 +454,17 @@ int sLua_LuaDomain::LuaDomain_proceed_statics(Lua * L, int n, int caller) {
         *p = 0;
         L->push();
         r = 3;
-        printm(M_INFO, "IDOMAIN called.\n");
         break;
     case LUADOMAIN_NDOMAIN:
         p = (Domain **) L->touserdata(1);
-        printm(M_INFO, "NDOMAIN called.\n");
         if (*p) {
-            printm(M_INFO, "Not first time.\n");
             *p = (*p)->Next();
         } else {
-            printm(M_INFO, "First time. p = %p\n", Domain::First());
             *p = Domain::First();
-            printm(M_INFO, "First has pattern: ");
-            printm(M_BARE, Domain::First()->GetPattern());
         }
         if (*p) {
-            printm(M_INFO, "Still has data.\n");
-            printm(M_INFO, "Get pattern = ");
-            printm(M_BARE, (*p)->GetPattern());
             L->push((*p)->GetPattern());
         } else {
-            printm(M_INFO, "No more data.\n");
             L->push();
         }
         r = 1;
-- 
cgit v1.2.3