Did I? The code on your page still has it logging to both the local console and to the server.
LOG._log = function(msg, logLevel)
{
LOG._logToConsole(msg, logLevel);
if (LOG.transmitToServer)
{
LOG._logToServer(msg, logLevel);
}
}
But I understand your point. My point however is that log4 branding is a little bit overused to attract attention to Javascript logging at the moment and I'm not picking on this article solely.
I do appreciate the content of the article and the contribution it makes to the topic. |