Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

logging with :parameters is wrong #25

Open
stringparser opened this issue Oct 15, 2016 · 1 comment
Open

logging with :parameters is wrong #25

stringparser opened this issue Oct 15, 2016 · 1 comment
Assignees
Labels

Comments

@stringparser
Copy link
Owner

stringparser commented Oct 15, 2016

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)

@stringparser stringparser self-assigned this Oct 15, 2016
@stringparser stringparser changed the title logging is wrong logging with :parameters is wrong Oct 15, 2016
stringparser added a commit that referenced this issue Feb 11, 2017
Depth was preventing to log the correct values

fixes #25
@stringparser
Copy link
Owner Author

Its hanging while running the tests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant