Skip to content
Snippets Groups Projects
Commit df9c2bd0 authored by Imran Hussain's avatar Imran Hussain
Browse files

Add events handlers for: warnings, errors, and debug

parent a82f62ab
No related branches found
No related tags found
No related merge requests found
module.exports = (e) => {
/* global process */
if (process.env.DEBUG == true ) {
console.info(e);
}
};
module.exports = (e) => {
console.error(e);
};
module.exports = (e) => {
console.warn(e);
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment