From: Mike Taylor Date: Thu, 20 Nov 2014 11:17:33 +0000 (+0000) Subject: Remove legacy mkws.log() function: nothing should be using it any more. X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=229e11d6a8ed38cdbc70abaef93620c0d4c2a1ef;p=mkws-moved-to-github.git Remove legacy mkws.log() function: nothing should be using it any more. --- diff --git a/src/mkws-core.js b/src/mkws-core.js index 166af33..5cd500d 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -111,9 +111,6 @@ function _log(fn, string) { }; -// ### transitional placeholder function until we have promoted all invocations -mkws.log = function(x) { _log(mkws.logger.debug, "LEGACY LOG: " + x) }; - mkws.trace = function(x) { _log(mkws.logger.trace, x) }; mkws.debug = function(x) { _log(mkws.logger.debug, x) }; mkws.info = function(x) { _log(mkws.logger.info, x) };