diff --git a/gulpfile.js b/gulpfile.js
index 53ce244f2c..317cbcf120 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -87,7 +87,7 @@ gulp.task('test', function (done) {
 
 gulp.task('stylesheets', function () {
     return gulp.src(paths.scss, {base: '.'})
-        .pipe(sass(options.sass))
+        .pipe(sass(options.sass).on('error', sass.logError))
         .pipe(rename(function (file) {
             file.dirname = file.dirname.replace('/sass', '/css');
             return file;