Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace XBT_INFO by XBT_DEBUG to make tesh happy
[simgrid.git] / src / bindings / lua / simgrid_lua.c
index 7c1fcfb..7dbf010 100644 (file)
@@ -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;