From b2923873b437c29261909b5510609c28d07336c7 Mon Sep 17 00:00:00 2001 From: Kyle Date: Fri, 1 Aug 2014 12:40:21 +1000 Subject: [PATCH] Move file creation logging to grunt.verbose --- tasks/coffee.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/coffee.js b/tasks/coffee.js index 7cbf1d3..5eb07af 100644 --- a/tasks/coffee.js +++ b/tasks/coffee.js @@ -229,12 +229,12 @@ module.exports = function(grunt) { var writeCompiledFile = function(path, output) { if (writeFile(path, output)) { - grunt.log.writeln('File ' + chalk.cyan(path) + ' created.'); + grunt.verbose.writeln('File ' + chalk.cyan(path) + ' created.'); } }; var writeSourceMapFile = function(path, output) { if (writeFile(path, output)) { - grunt.log.writeln('File ' + chalk.cyan(path) + ' created (source map).'); + grunt.verbose.writeln('File ' + chalk.cyan(path) + ' created (source map).'); } }; };