add optional debugging output

This commit is contained in:
2016-04-25 10:52:58 -07:00
parent b78c5763ce
commit b907c0ed71
4 changed files with 18 additions and 2 deletions

5
src/helpers/logger.js Normal file
View File

@@ -0,0 +1,5 @@
import debugging from 'debug';
export default function logger(type) {
return debugging(type);
}