Debug Vinyl file streams to see what files are run through your Gulp pipeline
npm install gulp-debug> Debug Vinyl file streams to see what files are run through your Gulp pipeline

``sh`
npm install --save-dev gulp-debug
`js
import gulp from 'gulp';
import debug from 'gulp-debug';
export default () => (
gulp.src('foo.js')
.pipe(debug({title: 'unicorn:'}))
.pipe(gulp.dest('dist'))
);
`
#### options
Type: object
##### title
Type: string\'gulp-debug:'
Default:
Give it a custom title so it's possible to distinguish the output of multiple instances logging at once.
##### minimal
Type: boolean\true
Default:
By default only relative paths are shown. Turn off minimal mode to also show cwd, base, path.
The stat property will be shown when you run gulp in verbose mode: gulp --verbose.
##### showFiles
Type: boolean\true
Default:
Print filenames.
##### showCount
Type: boolean\true
Default:
Print the file count.
##### logger(message)
Type: Function\console.log`
Default:
Provide your own logging utility.
The message is passed as a string in the first argument. Note that ANSI colors may be used in the message.