disable permanent error_log causing extra mails from cron

This commit is contained in:
Ralf Becker 2018-05-03 09:43:10 +02:00
parent 1022931845
commit 6206b3c857

View File

@ -258,7 +258,7 @@ class infolog_tracking extends Api\Storage\Tracking
); );
// add custom fields for given type // add custom fields for given type
$details += $this->get_customfields($data, $data['info_type'], $receiver); $details += $this->get_customfields($data, $data['info_type'], $receiver);
error_log(__METHOD__."(".array2string($data).", $receiver) returning ".array2string($details)); //error_log(__METHOD__."(".array2string($data).", $receiver) returning ".array2string($details));
return $details; return $details;
} }