Skip to content

Commit b8661b6

Browse files
committed
chore(plugin-loader): Remove debugging messages
1 parent ff5a884 commit b8661b6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/components/Plugins/inc/plugins/LuaPlugin.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,17 @@ class LuaPlugin : public Plugin
4747
bool InternalLoadPlugin()
4848
{
4949
this->rawLuaState = luaL_newstate();
50-
PRINTF("InternalLoadPlugin", "Debug #1\n");
5150
const luaL_Reg *lib = lualibs;
5251
for (; lib->func; lib++)
5352
{
5453
luaL_requiref(this->rawLuaState, lib->name, lib->func, 1);
5554
lua_pop(this->rawLuaState, 1);
5655
}
5756

58-
PRINTF("InternalLoadPlugin", "Debug #2\n");
5957
this->luaState = new luacpp::LuaState(this->rawLuaState, false);
6058

6159
std::vector<std::string> files = Files::FetchFileNames(this->m_path);
6260
SetupLuaEnvironment(this);
63-
PRINTF("InternalLoadPlugin", "Debug #3\n");
6461
for (std::string file : files)
6562
{
6663
std::string errstr;

0 commit comments

Comments
 (0)