chiark / gitweb /
rationalize interface for opening/closing logging
authorAlan Jenkins <alan.christopher.jenkins@gmail.com>
Fri, 26 Jan 2018 13:42:53 +0000 (13:42 +0000)
committerSven Eden <yamakuzure@gmx.net>
Wed, 30 May 2018 05:50:21 +0000 (07:50 +0200)
commite7cffa1a6113ef3459a26dfb67dcadb389794488
tree404427fb1001346f596a3ad6b75a643bf51f57ea
parent97b0dace31a81df76aa9f89b0474c18faef66721
rationalize interface for opening/closing logging

log_open_console() did not switch from stderr to /dev/console, when
"always_reopen_console" was set.  It was necessary to call
log_close_console() first.

By contrast, log_open() did switch between e.g. journald and kmsg according
to the value of "prohibit_ipc".

Let's fix log_open() to respect the values of all the log options, and we
can make log_close_*() private.

Also log_close_console() is changed.  There was some precaution, avoiding
closing the console fd if we are not PID 1.  I think commit 48a601fe made
a little mistake in leaving this in, and it only served to confuse
readers :).

Also I changed systemd-shutdown. Now we have log_set_prohibit_ipc(), let's
use it to clarify that systemd-shutdown is not expected to try and log via
journald (which it is about to kill).  We avoided ever asking it to, but
it's more convenient for the reader if they don't have to think about that.
In that sense, it's similar to using assert() to validate a function's
arguments.
src/basic/log.c
src/basic/log.h