Print errors on daemon startup if logging setup fails

Fixes: a873924e36

https://bugzilla.redhat.com/show_bug.cgi?id=2039652

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Martin Kletzander 2022-01-13 14:41:03 +01:00
parent d0198641bf
commit 537b51daeb
3 changed files with 9 additions and 3 deletions

View File

@ -919,8 +919,10 @@ int main(int argc, char **argv) {
config->log_outputs,
privileged,
verbose,
godaemon) < 0)
godaemon) < 0) {
virDispatchError(NULL);
exit(EXIT_FAILURE);
}
if (!pid_file &&
virPidFileConstructPath(privileged,

View File

@ -725,8 +725,10 @@ int main(int argc, char **argv) {
config->log_outputs,
privileged,
verbose,
godaemon) < 0)
godaemon) < 0) {
virDispatchError(NULL);
exit(EXIT_FAILURE);
}
if (!pid_file &&
virPidFileConstructPath(privileged,

View File

@ -940,8 +940,10 @@ int main(int argc, char **argv) {
config->log_outputs,
privileged,
verbose,
godaemon) < 0)
godaemon) < 0) {
virDispatchError(NULL);
exit(EXIT_FAILURE);
}
/* Let's try to initialize global variable that holds the host's boot time. */
if (virHostBootTimeInit() < 0) {