mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-21 20:15:17 +00:00
Print errors on daemon startup if logging setup fails
Fixes: a873924e36b28c5b125621e35b32beb6b077bcc8 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:
parent
d0198641bf
commit
537b51daeb
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user