twreporter-react
Version:
React-Redux site for The Reporter Foundation in Taiwan
16 lines (13 loc) • 305 B
JavaScript
var log4js = require('../lib/log4js');
log4js.configure({
replaceConsole: true,
levels: {
"[all]": "INFO"
},
appenders: [
{ type: "console", layout: { type: "basic" } }
]
});
console.debug("I should not see this.");
console.info("I should see this.");
console.error("I should also see this.");