From 4fce0dadcfdb5467adddc84b92e0b48b53970c4a Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 19 Nov 2014 09:58:41 +0100 Subject: [PATCH] remove further debug output from profiles --- profiles/bicycle.lua | 2 -- profiles/testbot.lua | 1 - 2 files changed, 3 deletions(-) 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