Remove legacy mkws.log() function: nothing should be using it any more.
authorMike Taylor <mike@indexdata.com>
Thu, 20 Nov 2014 11:17:33 +0000 (11:17 +0000)
committerMike Taylor <mike@indexdata.com>
Thu, 20 Nov 2014 11:17:33 +0000 (11:17 +0000)
src/mkws-core.js

index 166af33..5cd500d 100644 (file)
@@ -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) };