gulp-community / gulp-livereload

gulp plugin for livereload
768 stars 67 forks source link

silent mode is not so silent anymore #62

Closed DarkPark closed 9 years ago

DarkPark commented 9 years ago

version 3.3.0

despite the silent flag:

var livereload = require('gulp-livereload');
livereload.listen({silent: true});

there is still log output:

[11:16:39] /home/dp/Projects/web/test/stb-demo/build/develop/css/720.css reloaded.

it's not desired behavior as I handle all logging by myself.

this code seems to blame - https://github.com/vohof/gulp-livereload/blob/322ba3a5da482e793f9f8856a4f248d65dd4c72b/index.js#L50

ArnaudRinquin commented 9 years ago

I just fixed that through the quiet option I add in #64. Wait for it to get merged or use my branch.

cyrusdavid commented 9 years ago

thanks @ArnaudRinquin.

DarkPark commented 9 years ago

:+1: