From a8dfa7164ad16914d5c189a7e959ef67ab3fd6da Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Thu, 22 Oct 2015 20:24:45 +0300 Subject: [PATCH] only log error messages https://github.com/leonidas/gulp-project-template/issues/32 --- gulpfile.babel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index dedc6d5..dda3d1c 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -61,7 +61,7 @@ const browserifyConfig = { }; function handleError(err) { - gutil.log(err); + gutil.log(err.message); gutil.beep(); notifier.notify({ title: 'Compile Error',