X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-handlebars.js;h=3a59e9c757a7b695917399421bd9d47dda1f0d62;hp=3e8ee6d072ae6f907cdc8d7b92a20748acb7f8fa;hb=35a76bb14959296357216c4166b7d6a1f3bf33e5;hpb=4e1cf7acd7be692d8d56bc6941b676ad51a71bfa diff --git a/src/mkws-handlebars.js b/src/mkws-handlebars.js index 3e8ee6d..3a59e9c 100644 --- a/src/mkws-handlebars.js +++ b/src/mkws-handlebars.js @@ -86,10 +86,10 @@ Handlebars.registerHelper('mkws-best-url', function(items) { for (var i in items) { var item = items[i] if (item.match(_urlRegexp)) { - mkws.warn("'" + item + "' *is* a URL"); + mkws.debug("'" + item + "' *is* a URL"); return item; } - mkws.warn("'" + item + "' is not a URL"); + mkws.debug("'" + item + "' is not a URL"); } return ""; });