From 45f8a5119488d28bf90311b2dd7fc55ee6f7d92a Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Fri, 19 Sep 2014 14:29:20 -0700 Subject: [PATCH] build: prevent infinite loop during install --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8684460fba..7e176cd20c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -101,7 +101,6 @@ gulp.task('serve', connect.server({ return [function(req, resp, next){ if (req.url.match(/\.dart$/)) { resp.setHeader("Content-Type", "application/dart"); - console.log('now', req.url); } next(); }];