aboutsummaryrefslogtreecommitdiff
path: root/src/LuaRuntime.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LuaRuntime.hpp')
-rw-r--r--src/LuaRuntime.hpp4
1 files changed, 2 insertions, 2 deletions
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";