Skip to content

logging with :parameters is wrong #25

Open
@stringparser

Description

@stringparser

Although separation between stack and tasks is done well, logging for the stacks is not correctly reported.

Steps

1.- write a gulpfile.js like so

var gulp = require('gulp-runtime').create();

gulp.task(':one', function (done) {
  setTimeout(done, 120);
});

gulp.task('default', gulp.series('one', 'two'));

2.- run it

On the command line do node gulpfile.js

Expected

Task logging to be Starting default:series(one, two)

Actual

Task logging is Start default:series(:one, :one)

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions