From 20801a32f7073ea733a18ac16d299ee7453e88c4 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 7 Aug 2017 00:19:12 +0200 Subject: [PATCH] Logging term used HubSub instead of WebSub. --- plugins/OStatus/lib/huboutqueuehandler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/OStatus/lib/huboutqueuehandler.php b/plugins/OStatus/lib/huboutqueuehandler.php index 26990ff600..91ac30e650 100644 --- a/plugins/OStatus/lib/huboutqueuehandler.php +++ b/plugins/OStatus/lib/huboutqueuehandler.php @@ -58,12 +58,12 @@ class HubOutQueueHandler extends QueueHandler $success = $sub->push($atom); // The reason I split these up is because I want to see how the algorithm acts in practice. if ($success) { - common_debug('HubSub push completed successfully!'); + common_debug('WebSub push completed successfully!'); } else { - common_debug('HubSub push failed with an HTTP error.'); + common_debug('WebSub push failed with an HTTP error.'); } if ($sub->getErrors()>0) { - common_debug('Resetting HubSub push error count following successful reset.'); + common_debug('Resetting WebSub push error count following successful reset.'); $sub->resetErrors(); } } catch (AlreadyFulfilledException $e) {