mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:42:53 +00:00
Issue 8371: More enhanced logging
This commit is contained in:
parent
9f8ca846eb
commit
fc7ac75ba4
1 changed files with 2 additions and 3 deletions
|
@ -662,10 +662,9 @@ class Photo
|
|||
'resource-id' => $image_rid, 'uid' => $uid
|
||||
];
|
||||
if (!Photo::exists($condition)) {
|
||||
$condition = ['resource-id' => $image_rid];
|
||||
$photo = self::selectFirst(['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'uid'], $condition);
|
||||
$photo = self::selectFirst(['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'uid'], ['resource-id' => $image_rid]);
|
||||
if (!DBA::isResult($photo)) {
|
||||
Logger::info('Image not found', ['condition' => $condition]);
|
||||
Logger::info('Image not found', ['resource-id' => $image_rid]);
|
||||
} else {
|
||||
Logger::info('Mismatching permissions', ['condition' => $condition, 'photo' => $photo]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue