diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-30 14:49:25 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-30 14:49:25 -0400 |
commit | 67c1b399b4a5dd51d4bb77c6d8ad99560ff917b2 (patch) | |
tree | a5d3235faf24212bd9c04f11489fe91a67cff30b | |
parent | 3cb7562659628722b1a22d24abc40c112cc7d0a2 (diff) |
debug message for when services returns null
darcs-hash:20080530184925-84dde-5888985ad083a6cff49c2efe1679e1246735608a.gz
-rw-r--r-- | actions/remotesubscribe.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 53c868c1f..64b220383 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -118,6 +118,7 @@ class RemotesubscribeAction extends Action { $omb = array(); $services = $yadis->services(); # ordered by priority if (!$services) { + common_debug('remotesubscribe.php: Got no services back from XRDS.'); return NULL; } |