It's possible to hide the grunt-contrib-watch log?

86 Views Asked by At

Using the grunt-contrib-watch with grunt-concurrent I want to hide/ignore only the watch log when one or more files are changed.

Something like this:

>> File "karma/lcov-report/login/Login.js.html" changed.
>> File "karma/lcov-report/login/index.html" changed.

It's possible?

My concurrent grunt config:

    concurrent: {
        options: {
            logConcurrentOutput: true
        },
        karma: {
            tasks: ["karma:dev", "watch:karma"]
        }
    },
1

There are 1 best solutions below

1
On

If there is no relevant option in the grunt-watch options, you could try grunt-verbosity.