diff options
author | Friendika <info@friendika.com> | 2010-11-25 02:53:19 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-25 02:53:19 -0800 |
commit | ca706ccbed47ba8bf07afaaa825088afcde8cd91 (patch) | |
tree | 0cef2bc7d3a5d54db077633dbfbf31546982fc51 /include | |
parent | 9d7130e40382c316f5430ace4b9ca16a998a7432 (diff) | |
download | volse-hubzilla-ca706ccbed47ba8bf07afaaa825088afcde8cd91.tar.gz volse-hubzilla-ca706ccbed47ba8bf07afaaa825088afcde8cd91.tar.bz2 volse-hubzilla-ca706ccbed47ba8bf07afaaa825088afcde8cd91.zip |
added more notifier logging
Diffstat (limited to 'include')
-rw-r--r-- | include/notifier.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php index 8af67898c..72adab750 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -20,6 +20,8 @@ $a->set_baseurl(get_config('system','url')); + logger('notifier: invoked: ' . print_r($argv,true)); + $cmd = $argv[1]; switch($cmd) { @@ -207,6 +209,7 @@ if($followup) { foreach($items as $item) { // there is only one item if($item['id'] == $item_id) { + logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA); $slap = atom_entry($item,'html',$owner,$owner,false); $atom .= atom_entry($item,'text',$owner,$owner,false); } |