aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZog2017-12-26 10:00:32 +0100
committerZog2017-12-27 09:14:06 +0100
commit8a170684b07b6f7a97222e69c1680bf735757458 (patch)
treea867091e84c6a08f5c29bb1904032220d7089381
parent344c7f884f4c25ece7490c94dfcb82e66bff0b2d (diff)
downloadchouette-core-8a170684b07b6f7a97222e69c1680bf735757458.tar.bz2
Refs #5376; :fire: logs in Gruntfile5376-fix-vehicle-journeys-ui
-rw-r--r--Gruntfile.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.coffee b/Gruntfile.coffee
index 16b55e8ef..958ff81f8 100644
--- a/Gruntfile.coffee
+++ b/Gruntfile.coffee
@@ -1,12 +1,12 @@
module.exports = (grunt) =>
javascriptSpecPath = (path) ->
- grunt.log.writeln "IN: " + path
+ grunt.log.debug "IN: " + path
path = path.replace 'app/javascript', 'spec/javascript'
if path.match /actions/
path = path.replace /actions.*/, 'actions_spec.js'
if path.match /reducers/
path = path.replace '.js', '_spec.js'
- grunt.log.writeln "OUT: " + path
+ grunt.log.debug "OUT: " + path
path
grunt.initConfig
@@ -37,7 +37,7 @@ module.exports = (grunt) =>
files = []
this.files.forEach (file) ->
files.push file.src
- grunt.log.writeln files
+ grunt.log.debug files
grunt.util.spawn
cmd: 'node_modules/.bin/jest'
args: files