From 144a938923a431711cc40ec4504b2dc61002152c Mon Sep 17 00:00:00 2001 From: Florian Schlichting Date: Fri, 8 Jan 2016 13:35:51 +0100 Subject: [PATCH] demote stack trace to regular debug logging (cf. #42) This code produced a stack trace every time an attendee deleted an event from his calendar. It is not clear what bug this was meant to shed light on. --- inc/DAVResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/DAVResource.php b/inc/DAVResource.php index aa730e22..db392266 100644 --- a/inc/DAVResource.php +++ b/inc/DAVResource.php @@ -1458,7 +1458,7 @@ EOQRY; case 'dav-data': if ( !isset($this->resource) ) $this->FetchResource(); - trace_bug("Exists ".($this->exists?"true":"false")); + dbg_error_log( 'DAVResource', ':GetProperty: dav-data: fetched resource does%s exist.', ($this->exists?'':' not') ); return $this->resource->caldav_data; break;