mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
added more notifier logging
This commit is contained in:
parent
9d7130e403
commit
ca706ccbed
2 changed files with 6 additions and 0 deletions
|
@ -20,6 +20,8 @@
|
||||||
|
|
||||||
$a->set_baseurl(get_config('system','url'));
|
$a->set_baseurl(get_config('system','url'));
|
||||||
|
|
||||||
|
logger('notifier: invoked: ' . print_r($argv,true));
|
||||||
|
|
||||||
$cmd = $argv[1];
|
$cmd = $argv[1];
|
||||||
|
|
||||||
switch($cmd) {
|
switch($cmd) {
|
||||||
|
@ -207,6 +209,7 @@
|
||||||
if($followup) {
|
if($followup) {
|
||||||
foreach($items as $item) { // there is only one item
|
foreach($items as $item) { // there is only one item
|
||||||
if($item['id'] == $item_id) {
|
if($item['id'] == $item_id) {
|
||||||
|
logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
|
||||||
$slap = atom_entry($item,'html',$owner,$owner,false);
|
$slap = atom_entry($item,'html',$owner,$owner,false);
|
||||||
$atom .= atom_entry($item,'text',$owner,$owner,false);
|
$atom .= atom_entry($item,'text',$owner,$owner,false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -228,6 +228,7 @@ function item_post(&$a) {
|
||||||
dbesc($uri));
|
dbesc($uri));
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
$post_id = $r[0]['id'];
|
$post_id = $r[0]['id'];
|
||||||
|
logger('mod_item: saved item ' . $post_id);
|
||||||
|
|
||||||
if($parent) {
|
if($parent) {
|
||||||
|
|
||||||
|
@ -313,6 +314,8 @@ function item_post(&$a) {
|
||||||
|
|
||||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||||
|
|
||||||
|
logger('mod_item: notifier invoked: ' . "\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &");
|
||||||
|
|
||||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &",
|
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &",
|
||||||
array(),$foo));
|
array(),$foo));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue