remove further debug output from profiles

This commit is contained in:
Dennis Luxen 2014-11-19 09:58:41 +01:00
parent 288c241fb4
commit 4fce0dadcf
2 changed files with 0 additions and 3 deletions

View File

@ -138,7 +138,6 @@ function node_function (node, result)
-- parse access and barrier tags -- parse access and barrier tags
if access and access ~= "" then if access and access ~= "" then
if access_tag_blacklist[access] then if access_tag_blacklist[access] then
io.write("node access: " .. access .. "\n")
result.barrier = true result.barrier = true
else else
result.barrier = false result.barrier = false
@ -147,7 +146,6 @@ function node_function (node, result)
if barrier_whitelist[barrier] then if barrier_whitelist[barrier] then
result.barrier = false result.barrier = false
else else
io.write("barrier access: " .. barrier .. "\n")
result.barrier = true result.barrier = true
end end
end end

View File

@ -49,7 +49,6 @@ function node_function (node, result)
local traffic_signal = node:get_value_by_key("highway") local traffic_signal = node:get_value_by_key("highway")
if traffic_signal and traffic_signal == "traffic_signals" then if traffic_signal and traffic_signal == "traffic_signals" then
io.write("traffic_signal\n")
result.traffic_lights = true; result.traffic_lights = true;
-- TODO: a way to set the penalty value -- TODO: a way to set the penalty value
end end