From: Mike Taylor Date: Thu, 20 Nov 2014 11:01:25 +0000 (+0000) Subject: Use specific logging. X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=78376c3e4b6601a4e342613f5d08bf4f9af48e4f;hp=6b93103a0df4c035f11271b4fabf38022f8e306e;p=mkws-moved-to-github.git Use specific logging. --- diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 22aeb20..3554d98 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -45,9 +45,9 @@ function filterSet(team) { for (var i in m_list) { var filter = m_list[i]; if (matchFn(filter)) { - m_team.log("removeMatching: removing filter " + mkws.$.toJSON(filter)); + m_team.info("removeMatching: removing filter " + mkws.$.toJSON(filter)); } else { - m_team.log("removeMatching: keeping filter " + mkws.$.toJSON(filter)); + m_team.info("removeMatching: keeping filter " + mkws.$.toJSON(filter)); newList.push(filter); } } @@ -70,7 +70,7 @@ function filterSet(team) { that.visitTargets(function(id, name) { if (res) res += ","; if (id.match(/^[a-z:]+[=~]/)) { - m_team.log("filter '" + id + "' already begins with SETTING OP"); + m_team.info("filter '" + id + "' already begins with SETTING OP"); } else { id = 'pz:id=' + id; }