Daniele Bartolini 1 год назад
Родитель
Сommit
78adbeee76
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      src/lua/lua_environment.cpp

+ 0 - 3
src/lua/lua_environment.cpp

@@ -548,12 +548,9 @@ void LuaEnvironment::reload()
 	lua_getfield(L, -1, "load_order");
 	for (size_t i = 1, n = lua_objlen(L, -1); i < n + 1; ++i) {
 		lua_rawgeti(L, -1, (int)i);
-		logi(LUA, "reloading: %s", lua_tostring(L, -1));
-
 		LuaStack stack(L);
 		StringId64 name = stack.get_resource_name(-1);
 		this->execute((const LuaResource *)device()->_resource_manager->get(RESOURCE_TYPE_SCRIPT, name), 0);
-
 		lua_pop(L, 1);
 	}
 	lua_pop(L, 2);