diff --git a/profiles/bicycle.lua b/profiles/bicycle.lua index 3a286639e..713c6b737 100644 --- a/profiles/bicycle.lua +++ b/profiles/bicycle.lua @@ -138,7 +138,6 @@ function node_function (node, result) -- parse access and barrier tags if access and access ~= "" then if access_tag_blacklist[access] then - io.write("node access: " .. access .. "\n") result.barrier = true else result.barrier = false @@ -147,7 +146,6 @@ function node_function (node, result) if barrier_whitelist[barrier] then result.barrier = false else - io.write("barrier access: " .. barrier .. "\n") result.barrier = true end end diff --git a/profiles/testbot.lua b/profiles/testbot.lua index dcf0130c2..7bd141635 100644 --- a/profiles/testbot.lua +++ b/profiles/testbot.lua @@ -49,7 +49,6 @@ function node_function (node, result) local traffic_signal = node:get_value_by_key("highway") if traffic_signal and traffic_signal == "traffic_signals" then - io.write("traffic_signal\n") result.traffic_lights = true; -- TODO: a way to set the penalty value end