[-] Remove debug messages

This commit is contained in:
Reece Wilson 2022-01-17 22:26:57 +00:00
parent e847e1024f
commit 01a4012c2f
2 changed files with 0 additions and 5 deletions

View File

@ -194,7 +194,6 @@ local function _auBlockProjectKeyLinks(value, processor)
end
local function auBlockProjectKeyLinks(processor, value)
print("LINK?", json.encode(value))
__pushFilter(value, "value", function(val)
links(__translate(processor, val))
end, true)
@ -234,7 +233,6 @@ local function handleActionCommon(action, cb, ...)
local _if = action["if"]
local _then = action["then"]
print("EVAL?")
--_G["info"] = info
if (_if) then
@ -251,7 +249,6 @@ local function handleActionCommon(action, cb, ...)
action.eval = action["then"]
end
print("RUN?", json.encode(action.eval))
if (action.eval) then
cb(action.eval, ...)
end
@ -263,7 +260,6 @@ end
local function auBlockProjectKeyBuildAction(processor, value, mask)
__pushFilter(value, nil, function(value)
handleActionCommon(value, function(thenblock)
print("eval... ", json.encode(thenblock))
auBlockProjectKeyEval(processor, thenblock, auProjectBlockHandlers)
end)
end, processor)

View File

@ -305,7 +305,6 @@ function isWeakCircularReference(depName)
-- TODO: recursion
for index, value in ipairs(dep.deps) do
print(value, _auCurrentProject)
if value == _auCurrentProject then
return true
end