diff options
author | Mario <mario@mariovavti.com> | 2023-06-08 15:34:00 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-06-08 15:34:00 +0000 |
commit | 2739f1f3f085dc9416b645c0da16a88b9c51af73 (patch) | |
tree | fa3d61d9851463576b3576ea97894c0fe3c8655b /Zotlabs/Daemon/Queue.php | |
parent | 0c2cb18578f2f02c96cdb5ab44d0db7b24ce2af5 (diff) | |
download | volse-hubzilla-2739f1f3f085dc9416b645c0da16a88b9c51af73.tar.gz volse-hubzilla-2739f1f3f085dc9416b645c0da16a88b9c51af73.tar.bz2 volse-hubzilla-2739f1f3f085dc9416b645c0da16a88b9c51af73.zip |
remove logging
Diffstat (limited to 'Zotlabs/Daemon/Queue.php')
-rw-r--r-- | Zotlabs/Daemon/Queue.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Queue.php b/Zotlabs/Daemon/Queue.php index 6cb059ecd..abb780475 100644 --- a/Zotlabs/Daemon/Queue.php +++ b/Zotlabs/Daemon/Queue.php @@ -55,9 +55,8 @@ class Queue { foreach ($qItems as $qItem) { $deliveries[] = $qItem['outq_hash']; } - shuffle($deliveries); - hz_syslog(print_r($deliveries, true)); + shuffle($deliveries); do_delivery($deliveries, true); } } |