diff options
author | Max Kostikov <max@kostikov.co> | 2021-01-21 08:16:15 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2021-01-21 08:16:15 +0100 |
commit | 28ae78c579d9423f81f89443c50aa240609fb8f3 (patch) | |
tree | 5201009eca26257247a908dc588ba7a809457f04 | |
parent | 8134e9cae0ebdb551db7d044f8bd5558ca6903cd (diff) | |
download | volse-hubzilla-28ae78c579d9423f81f89443c50aa240609fb8f3.tar.gz volse-hubzilla-28ae78c579d9423f81f89443c50aa240609fb8f3.tar.bz2 volse-hubzilla-28ae78c579d9423f81f89443c50aa240609fb8f3.zip |
Higher log level
-rw-r--r-- | Zotlabs/Daemon/Cache_query.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Cache_query.php b/Zotlabs/Daemon/Cache_query.php index c709c96b5..18d19cdf2 100644 --- a/Zotlabs/Daemon/Cache_query.php +++ b/Zotlabs/Daemon/Cache_query.php @@ -15,7 +15,7 @@ class Cache_query { $pid = get_config('procid', $key, false); if ($pid && (function_exists('posix_kill') ? posix_kill($pid, 0) : true)) { - logger($key . ': procedure already run with pid ' . $pid); + logger($key . ': procedure already run with pid ' . $pid, LOGGER_DEBUG); return; } |