diff options
author | Friendika <info@friendika.com> | 2011-08-19 02:53:44 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-19 02:53:44 -0700 |
commit | 16129a4b8c689cfa4c8dcd793f39d91e026abc72 (patch) | |
tree | 0034d01f9ce117fc751af230de5df6498c382e42 /include/diaspora.php | |
parent | 395faae0b2eee4a134799f55b17784487088eb41 (diff) | |
download | volse-hubzilla-16129a4b8c689cfa4c8dcd793f39d91e026abc72.tar.gz volse-hubzilla-16129a4b8c689cfa4c8dcd793f39d91e026abc72.tar.bz2 volse-hubzilla-16129a4b8c689cfa4c8dcd793f39d91e026abc72.zip |
better reporting when d* parent not found
Diffstat (limited to 'include/diaspora.php')
-rw-r--r-- | include/diaspora.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 9b3969b73..aaae7a717 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -482,7 +482,7 @@ function diaspora_comment($importer,$xml,$msg) { dbesc($parent_guid) ); if(! count($r)) { - logger('diaspora_comment: parent item not found: ' . $guid); + logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid); return; } $parent_item = $r[0]; |