From: thiery Date: Thu, 24 Mar 2011 14:28:56 +0000 (+0000) Subject: Replace XBT_INFO by XBT_DEBUG to make tesh happy X-Git-Tag: v3.6_beta2~119 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d79cb913d87e786a959e06fed80983cdc618fc06?hp=ec9ed4cd8cbd14684047793bdef007c11e29efb4 Replace XBT_INFO by XBT_DEBUG to make tesh happy git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9850 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/bindings/lua/simgrid_lua.c b/src/bindings/lua/simgrid_lua.c index 7c1fcfbcbe..7dbf010603 100644 --- a/src/bindings/lua/simgrid_lua.c +++ b/src/bindings/lua/simgrid_lua.c @@ -507,7 +507,7 @@ static const luaL_reg Trace_methods[] = { static int run_lua_code(int argc, char **argv) { - XBT_INFO("Run lua code %s", argv[0]); + XBT_DEBUG("Run lua code %s", argv[0]); lua_State *L = lua_newthread(simgrid_lua_state); int ref = luaL_ref(simgrid_lua_state, LUA_REGISTRYINDEX); // protect the thread from being garbage collected int res = 1;