From 1457f6066bfd31676766012c0f7231698ef13169 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 27 Dec 2009 14:16:55 +1300 Subject: [PATCH] Correct log facility. --- inc/freebusy-GET.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/freebusy-GET.php b/inc/freebusy-GET.php index ea79d536..83122204 100644 --- a/inc/freebusy-GET.php +++ b/inc/freebusy-GET.php @@ -54,7 +54,7 @@ if ( $qry->Exec("freebusy",__LINE__,__FILE__) && $qry->rows > 0 ) { if ( $calendar_object->transp != "TRANSPARENT" ) { switch ( $calendar_object->status ) { case "TENTATIVE": - dbg_error_log( "REPORT", " FreeBusy: tentative appointment: %s, %s", $calendar_object->start, $calendar_object->finish ); + dbg_error_log( "freebusy", " FreeBusy: tentative appointment: %s, %s", $calendar_object->start, $calendar_object->finish ); $busy_tentative[] = $calendar_object; break; @@ -63,7 +63,7 @@ if ( $qry->Exec("freebusy",__LINE__,__FILE__) && $qry->rows > 0 ) { break; default: - dbg_error_log( "REPORT", " FreeBusy: Not transparent, tentative or cancelled: %s, %s", $calendar_object->start, $calendar_object->finish ); + dbg_error_log( "freebusy", " FreeBusy: Not transparent, tentative or cancelled: %s, %s", $calendar_object->start, $calendar_object->finish ); $busy[] = $calendar_object; break; }