diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-04-12 18:27:04 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-04-12 18:27:04 +0200 |
commit | 63d46dbdfbb551b4c5c8b35e3498a0fd6978f675 (patch) | |
tree | 5995d47bc4ed3447deecc9639acc427f8d6f4d66 | |
parent | bdf1b23198ed958942f30c7103995231afd2f5da (diff) | |
download | volse-hubzilla-63d46dbdfbb551b4c5c8b35e3498a0fd6978f675.tar.gz volse-hubzilla-63d46dbdfbb551b4c5c8b35e3498a0fd6978f675.tar.bz2 volse-hubzilla-63d46dbdfbb551b4c5c8b35e3498a0fd6978f675.zip |
more logging
-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; } |