Skip to content

Instantly share code, notes, and snippets.

@pixelbacon
Created June 13, 2017 20:24
Show Gist options
  • Save pixelbacon/ef91528e1be8dce71bca71ccc521b76a to your computer and use it in GitHub Desktop.
Save pixelbacon/ef91528e1be8dce71bca71ccc521b76a to your computer and use it in GitHub Desktop.
Wrapper for visionmedia/debug
import Debug from 'debug';
Debug.enable('company.*');
function createLogger(prefix){
prefix = 'company.project.' + prefix;
return {
log: Debug(prefix),
error: Debug(prefix + '::ERROR'),
info: Debug(prefix + '::info'),
warning: Debug(prefix + '::warning'),
}
}
export default createLogger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment