Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / log4js / lib / debug.js
1 "use strict";
2
3 module.exports = function(label) {
4   var debug;
5
6   if (process.env.NODE_DEBUG && /\blog4js\b/.test(process.env.NODE_DEBUG)) {
7     debug = function(message) { 
8       console.error('LOG4JS: (%s) %s', label, message); 
9     };
10   } else {
11     debug = function() { };
12   }
13
14   return debug;
15 };