From 4bc9a37c3ae23c3493d7a216353479d3b338a726 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 14 Feb 2004 18:00:19 +0000 Subject: [PATCH] =?UTF-8?q?LOG=5FUSER=20au=20lieu=20de=20LOG=5FLOCAL0=20da?= =?UTF-8?q?ns=20la=20fonction=20openlog=20de=20dolibarr=5Fsyslog=20car=20L?= =?UTF-8?q?OG=5FLOCAL0=20non=20accept=E9=20par=20tous=20les=20PHP.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/lib/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/functions.inc.php b/htdocs/lib/functions.inc.php index 3e4e1baf692..f2b6ed2092e 100644 --- a/htdocs/lib/functions.inc.php +++ b/htdocs/lib/functions.inc.php @@ -30,7 +30,7 @@ Function dolibarr_syslog($message) { define_syslog_variables(); - openlog("dolibarr", LOG_PID | LOG_PERROR, LOG_LOCAL0); + openlog("dolibarr", LOG_PID | LOG_PERROR, LOG_USER); # LOG_USER au lieu de LOG_LOCAL0 car non accepté par tous les PHP syslog(LOG_WARNING, $message);