From 7e09b35b008f58809ac56184a4f83ab875c038e0 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 5 Apr 2025 10:33:38 +0530 Subject: Add instance manager for enforcing single instance --- src/LuaRuntime.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/LuaRuntime.hpp') diff --git a/src/LuaRuntime.hpp b/src/LuaRuntime.hpp index 074b76a..74b7810 100644 --- a/src/LuaRuntime.hpp +++ b/src/LuaRuntime.hpp @@ -74,11 +74,11 @@ private: public: static void inspect_lua_stack(lua_State *state) { int top = lua_gettop(state); - qDebug() << "Lua Stack (top: " << top << "):\n"; + qDebug() << "--- Lua Stack (top: " << top << ") ---\n"; for (int i = 1; i <= top; i++) { int type = lua_type(state, i); - qDebug() << i << ": " << lua_typename(state, type); + qDebug() << " " << i << ": " << lua_typename(state, type); } qDebug() << "---------------------------\n"; -- cgit v1.3.1