From 1cfebbddcaea5c8f20a0193984cd9c252587575c Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 20 May 2008 16:18:28 +0000 Subject: [PATCH] Remove exit when logsys files can't be created. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1549 fd59a12c-fef9-0310-b244-a6a79926bd2f --- exec/main.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/exec/main.c b/exec/main.c index 45903fcc..2ff42a19 100644 --- a/exec/main.c +++ b/exec/main.c @@ -615,12 +615,7 @@ int main (int argc, char **argv) logsys_config_facility_set ("openais", main_config.syslog_facility); logsys_config_mode_set (main_config.logmode); - - res = logsys_config_file_set (&error_string, main_config.logfile); - if (res == -1) { - log_printf (LOG_LEVEL_ERROR, error_string); - openais_exit_error (AIS_DONE_LOGSETUP); - } + logsys_config_file_set (&error_string, main_config.logfile); aisexec_uid_determine (&main_config);