Distinguish between logging to stderr and ad-hoc printing to stdout #281
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Aims:
This PR:
std.log
output to stderr, by using (the new method)V8Worker2.log
std.print
which fills much the same purpose asstd.log
did -- it's a casual way to output valuesAside from outputting to stderr,
std.log
behaves a bit differently, since it doesn't go throughwrite
. There's no formatting options -- strings get printed as-is, and anything else goes throughJSON.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 thatlog
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.