]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Logging term used HubSub instead of WebSub.
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 6 Aug 2017 22:19:12 +0000 (00:19 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 6 Aug 2017 22:19:12 +0000 (00:19 +0200)
plugins/OStatus/lib/huboutqueuehandler.php

index 26990ff6000b9efe61bcf0f9106f80642a5db2f4..91ac30e65011e26499db0be7223cc0298f4776c6 100644 (file)
@@ -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) {