DO NOT MERGE: add timestamps to stderr sink
Some checks are pending
Contrib / admin/halog/ (push) Waiting to run
Contrib / dev/flags/ (push) Waiting to run
Contrib / dev/haring/ (push) Waiting to run
Contrib / dev/hpack/ (push) Waiting to run
Contrib / dev/poll/ (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

This commit is contained in:
Frederic Lecaille 2026-05-07 17:29:30 +02:00
parent 244b398d58
commit ddcca0127e

View file

@ -1424,7 +1424,7 @@ int sink_resolve_logger_buffer(struct logger *logger, char **msg)
static void sink_init()
{
sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1);
sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2);
sink_new_fd("stderr", "standard output (fd#2)",LOG_FORMAT_TIMED, 2);
sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576);
sink_new_buf("dpapi", "DPAPI ring buffer", LOG_FORMAT_TIMED, 1048576);
}