lua: remove debugging output

Origin commit data
------------------
Commit: a568f3004e
Author: martii <m4rtii@gmx.de>
Date: 2013-05-07 (Tue, 07 May 2013)
This commit is contained in:
martii
2013-05-07 20:56:57 +02:00
committed by Michael Liebmann
parent 2768748738
commit f6796023ba

View File

@@ -662,7 +662,6 @@ m:exec()
bool CLuaInstance::tableLookup(lua_State *L, const char *what, std::string &value) bool CLuaInstance::tableLookup(lua_State *L, const char *what, std::string &value)
{ {
fprintf(stderr, "tableLookupString\n");
bool res = false; bool res = false;
lua_pushstring(L, what); lua_pushstring(L, what);
lua_gettable(L, -2); lua_gettable(L, -2);
@@ -670,13 +669,11 @@ fprintf(stderr, "tableLookupString\n");
if (res) if (res)
value = lua_tostring(L, -1); value = lua_tostring(L, -1);
lua_pop(L, 1); lua_pop(L, 1);
fprintf(stderr, "res=%d\n", res);
return res; return res;
} }
bool CLuaInstance::tableLookup(lua_State *L, const char *what, int &value) bool CLuaInstance::tableLookup(lua_State *L, const char *what, int &value)
{ {
fprintf(stderr, "tableLookupInt\n");
bool res = false; bool res = false;
lua_pushstring(L, what); lua_pushstring(L, what);
lua_gettable(L, -2); lua_gettable(L, -2);
@@ -684,7 +681,6 @@ fprintf(stderr, "tableLookupInt\n");
if (res) if (res)
value = (int) lua_tonumber(L, -1); value = (int) lua_tonumber(L, -1);
lua_pop(L, 1); lua_pop(L, 1);
fprintf(stderr, "res=%d\n", res);
return res; return res;
} }