diff options
-rw-r--r-- | Zotlabs/Daemon/Onedirsync.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Onedirsync.php b/Zotlabs/Daemon/Onedirsync.php index 5132924c8..0d5ad22ea 100644 --- a/Zotlabs/Daemon/Onedirsync.php +++ b/Zotlabs/Daemon/Onedirsync.php @@ -15,7 +15,7 @@ class Onedirsync { $update_id = intval($argv[1]); if (!$update_id) { - logger('onedirsync: no update'); + logger('onedirsync: no update id'); return; } @@ -24,6 +24,7 @@ class Onedirsync { ); if (!$r) { + logger('onedirsync: update id not found'); return; } |