调试功能只是不打印到控制台

时间:2016-07-12 01:50:31

标签: lua computercraft

我制作了一个调试功能,只有在程序以调试模式运行时才会输出,但由于某种原因它只是无法工作。

 .joen_now_part h6 a:hover {
   background-color: #fff;
   color: #2a8a15;

 }

这是节目的输出:

function debug{...}
  if bDebug then --bDebug is whether the program is in debug mode. It's set to true.
    for i,v in ipairs(arg) do
      print("[DEBUG] "..v)
    end
  end
end

我有一行代码fireflyGLASS v0.1 alpha Initializing classes... 1/5 Initialized 'box' ... 5/5 Initialized 'playerSurface' ,但它没有说明。

有人可以告诉我发生了什么吗?

1 个答案:

答案 0 :(得分:0)

等待!我想通了。

事实证明,我在初始化local bDebug之后初始化了debug(),这让lua疯了。