summaryrefslogtreecommitdiffstats
path: root/backend/src/index.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
committerWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
commit97b6de6aa437f7a913a33b9e6aa18a919faf2caf (patch)
tree431e12a535baf1d2ad59601ee7c5e8084ae7a263 /backend/src/index.js
parentd22616d5a675f5a381c741784333151255713b45 (diff)
a whole bunch of things that should be in their own commits
Diffstat (limited to 'backend/src/index.js')
-rw-r--r--backend/src/index.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/backend/src/index.js b/backend/src/index.js
index 8cf48fc..9f759ef 100644
--- a/backend/src/index.js
+++ b/backend/src/index.js
@@ -30,9 +30,3 @@ server.express.use(async (req, res, next) => {
server.start({ port: 4444 }, deets => {
console.log(`Server is running on http://localhost:${deets.port}`);
});
-
-// overwrite console.log
-const chalk = require('chalk');
-
-// global.console.l = (...butta) => console.log(chalk.bold.yellow(...butta));
-global.console.l = console.log;