[twitter] Improve logging for actions

This commit is contained in:
Hypolite Petovan 2020-06-21 16:14:08 -04:00
parent 1e451a3490
commit 9d2c8902d3
1 changed files with 7 additions and 6 deletions

View File

@ -491,24 +491,25 @@ function twitter_action(App $a, $uid, $pid, $action)
$post = ['id' => $pid];
Logger::log("twitter_action '" . $action . "' ID: " . $pid . " data: " . print_r($post, true), Logger::DATA);
Logger::debug('before action', ['action' => $action, 'pid' => $pid, 'data' => $post]);
switch ($action) {
case "delete":
case 'delete':
// To-Do: $result = $connection->post('statuses/destroy', $post);
$result = [];
break;
case "like":
case 'like':
$result = $connection->post('favorites/create', $post);
break;
case "unlike":
case 'unlike':
$result = $connection->post('favorites/destroy', $post);
break;
default:
Logger::log('Unhandled action ' . $action, Logger::DEBUG);
Logger::warning('Unhandled action', ['action' => $action]);
$result = [];
}
Logger::log("twitter_action '" . $action . "' send, result: " . print_r($result, true), Logger::DEBUG);
Logger::info('after action', ['action' => $action, 'result' => $result]);
}
function twitter_post_hook(App $a, array &$b)