Open hemanth opened 11 years ago
Say the code is like [Object attributes with name spaces] :
$ = (function(){} var log = x.y.z.log.logManager.getLogger('say'); log.say("zomg!"); ());
or
$ = (function(){} return {log : x.y.z.log.logManager.getLogger('fatal')}; ()); $.log.say("zomg");
Even though we provide the namespace and method in the grunt config, these kind of logging message will not be stripped off.
namespace
method
The potential fix with be to provide a RE in the config?
RE
Ping @ehynds
Say the code is like [Object attributes with name spaces] :
or
Even though we provide the
namespace
andmethod
in the grunt config, these kind of logging message will not be stripped off.The potential fix with be to provide a
RE
in the config?