From e3044fa28019fc799fe7422313a67df9479ae812 Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Mon, 17 Mar 2008 00:00:09 +0000 Subject: [PATCH] - removed L_FAC. git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@798 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- apps/ivr/Ivr.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/ivr/Ivr.cpp b/apps/ivr/Ivr.cpp index 8970f2f0..2c98741e 100644 --- a/apps/ivr/Ivr.cpp +++ b/apps/ivr/Ivr.cpp @@ -83,16 +83,16 @@ extern "C" { else { switch(level){ case L_ERR: - syslog(LOG_ERR | L_FAC, "Error: %s", msg); + syslog(LOG_ERR, "Error: %s", msg); break; case L_WARN: - syslog(LOG_WARNING | L_FAC, "Warning: %s", msg); + syslog(LOG_WARNING, "Warning: %s", msg); break; case L_INFO: - syslog(LOG_INFO | L_FAC, "Info: %s", msg); + syslog(LOG_INFO, "Info: %s", msg); break; case L_DBG: - syslog(LOG_DEBUG | L_FAC, "Debug: %s", msg); + syslog(LOG_DEBUG, "Debug: %s", msg); break; } }