Avoid notice "Undefined property: Friendica\Util\Logger\StreamLogger::$DEBUG"
This commit is contained in:
parent
353cd66b26
commit
e041b969fc
|
@ -564,7 +564,7 @@ class Notify extends BaseDepository
|
|||
|
||||
// Is this the first email notification for this parent item and user?
|
||||
if (!DBA::exists('notify-threads', ['master-parent-uri-id' => $parent_uri_id, 'receiver-uid' => $params['uid']])) {
|
||||
$this->logger->log("notify_id:" . intval($notify_id) . ", parent: " . intval($params['parent']) . "uid: " . intval($params['uid']), $this->logger->DEBUG);
|
||||
$this->logger->info("notify_id:" . intval($notify_id) . ", parent: " . intval($params['parent']) . "uid: " . intval($params['uid']));
|
||||
|
||||
$fields = ['notify-id' => $notify_id, 'master-parent-uri-id' => $parent_uri_id,
|
||||
'receiver-uid' => $params['uid'], 'parent-item' => 0];
|
||||
|
@ -573,12 +573,12 @@ class Notify extends BaseDepository
|
|||
$emailBuilder->setHeader('Message-ID', $message_id);
|
||||
$log_msg = "include/enotify: No previous notification found for this parent:\n" .
|
||||
" parent: ${params['parent']}\n" . " uid : ${params['uid']}\n";
|
||||
$this->logger->log($log_msg, $this->logger->DEBUG);
|
||||
$this->logger->info($log_msg);
|
||||
} else {
|
||||
// If not, just "follow" the thread.
|
||||
$emailBuilder->setHeader('References', $message_id);
|
||||
$emailBuilder->setHeader('In-Reply-To', $message_id);
|
||||
$this->logger->log("There's already a notification for this parent.", $this->logger->DEBUG);
|
||||
$this->logger->info("There's already a notification for this parent.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user