From: Michael Date: Sun, 13 Dec 2020 16:38:12 +0000 (+0000) Subject: Added logging X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4626f98dbe8843cef09da3a96643fc1f2578f78e;hp=0eb4a600b0194e75e6dad2aca928b6bf9b7c4f95;p=friendica.git Added logging --- diff --git a/src/Model/Post/Delayed.php b/src/Model/Post/Delayed.php index aa0270e640..3d41371f9f 100644 --- a/src/Model/Post/Delayed.php +++ b/src/Model/Post/Delayed.php @@ -47,6 +47,7 @@ class Delayed public static function add(string $uri, array $item, int $notify = 0, bool $unprepared = false, string $delayed = '', array $taglist = [], array $attachments = []) { if (empty($item['uid']) || self::exists($uri, $item['uid'])) { + Logger::notice('No uid or already found'); return false; }