forked from GNUsocial/gnu-social
Somewhat better logging while still in trial phase
This commit is contained in:
parent
2e77a83816
commit
1244e8d929
@ -89,8 +89,8 @@ class ActivityModerationPlugin extends ActivityVerbHandlerPlugin
|
||||
return $deleted;
|
||||
}
|
||||
|
||||
common_debug('DELETING notice: ' . $act->objects[0]->id);
|
||||
$target = Notice::getByUri($act->objects[0]->id);
|
||||
common_debug('DELETING notice: ' . $act->objects[0]->id . ' on behalf of profile id==' . $target->getProfile()->getID());
|
||||
|
||||
$deleted = new Deleted_notice();
|
||||
|
||||
@ -101,8 +101,10 @@ class ActivityModerationPlugin extends ActivityVerbHandlerPlugin
|
||||
$deleted->act_created = $target->created;
|
||||
$deleted->created = common_sql_now();
|
||||
|
||||
common_debug('DELETING notice, storing Deleted_notice entry');
|
||||
$deleted->insert();
|
||||
$result = $deleted->insert();
|
||||
if ($result === false) {
|
||||
throw new ServerException('Could not insert Deleted_notice entry into database!');
|
||||
}
|
||||
|
||||
common_debug('DELETING notice, actually deleting now!');
|
||||
$target->delete();
|
||||
|
Loading…
Reference in New Issue
Block a user