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

Distinguish between logging to stderr and ad-hoc printing to stdout #281

Merged
merged 2 commits into from
Oct 24, 2019

Conversation

squaremo
Copy link
Member

@squaremo squaremo commented Oct 22, 2019

Aims:

This PR:

  • Makes sure runtime stuff is output to stderr (in part by updating the V8Worker2 dependency)
  • Makes std.log output to stderr, by using (the new method) V8Worker2.log
  • Adds std.print which fills much the same purpose as std.log did -- it's a casual way to output values

Aside from outputting to stderr, std.log behaves a bit differently, since it doesn't go through write. There's no formatting options -- strings get printed as-is, and anything else goes through JSON.stringify (which by default, keeps everything on one line). This is better suited to logging output, I reckon.

An alternative would be to keep std.log as it is, and give people another procedure for printing to stderr. I felt that log strongly suggests logging output, which comes with the expectation of output to stderr, and it was better to correct that now than have to keep explaining it.

 1. Update jk/v8worker2 to get
 jkcfg/v8worker2#4, which prints stacktraces
 etc., to stderr rather than stdout.

 2. it also introduces V8Worker2.log, which prints to stderr; use that
 in our error handler, so that those error traces go to stderr too.
This changes `std.log` so that it uses `V8Worker2.log`, and thereby
outputs to stderr.

Before log was subordinated to the role of logging, it was used
extensively to print simple results to stdout, for testing and
whatnot.

The need for printing to stdout is common; so rather than rewrite
everything to use

    write(val, '', opts)

this also adds a `print` procedure which can be used instead.
@squaremo squaremo changed the title Log to stderr Distinguish between logging to stderr and ad-hoc printing to stdout Oct 24, 2019
@squaremo squaremo marked this pull request as ready for review October 24, 2019 09:33
Copy link
Member

@dlespiau dlespiau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm!

@squaremo squaremo merged commit 83d9b6a into master Oct 24, 2019
@squaremo
Copy link
Member Author

Note to self: I should now spend some time putting tests in to make sure things go to stderr v stdout!

@squaremo squaremo deleted the log-to-stderr branch October 24, 2019 11:32
@squaremo
Copy link
Member Author

For the record: one concern is that log gives the expectation of being the analogue of console.log. It's not all that different; but we can make it more like console.log, perhaps, by pretty-printing values, and accepting varargs.

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

Successfully merging this pull request may close these issues.

Errors are printed to stdout instead of stderr
2 participants