diff options
author | EuAndreh <eu@euandre.org> | 2024-03-17 18:33:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-03-17 18:33:35 -0300 |
commit | 5e656cdb48d47f45dd95bf8c52060a48b912e79d (patch) | |
tree | 6b240d31b28db40116541b8fd8c642753a63219a /tests | |
parent | tests/js/hero.mjs: Add simple test for now() (diff) | |
download | papod-5e656cdb48d47f45dd95bf8c52060a48b912e79d.tar.gz papod-5e656cdb48d47f45dd95bf8c52060a48b912e79d.tar.xz |
src/hero.mjs: Log to stdout instead of stderr
The first question that this brings is:
Is the output of the program useful for a downstream process? Is this
logging an *output* of the program?
But in this case, the answer is: yes, for both questions.
A downstream program could very well be fed the output of the program
via a pipe and process it, as the data being emitted is meant to be
ingested.
So instead of following the default "warnings ought to go to stderr"
model, we acknowledge that the data is actually an *out*put, and send it
to std*out*.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lighttpd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf index 21f8011..e3cdce0 100644 --- a/tests/lighttpd.conf +++ b/tests/lighttpd.conf @@ -6,9 +6,9 @@ server.modules += ( server.bind = var.CWD + "/lighttpd.socket" server.document-root = var.CWD + "/src/static/" -server.errorlog = "/dev/stderr" -server.breakagelog = "/dev/stderr" -accesslog.filename = "/dev/stderr" +server.errorlog = "/dev/stdout" +server.breakagelog = "/dev/stdout" +accesslog.filename = "/dev/stdout" accesslog.format = "" accesslog.format += "{ " |