(cp 789c06283) fixes #2336 more details in Logger (execution_uuid)

This commit is contained in:
plegall
2025-03-01 14:23:51 +01:00
parent 82b49286ef
commit cc0930e47c
3 changed files with 9 additions and 2 deletions
+4 -1
View File
@@ -2228,7 +2228,9 @@ function pwg_URL()
*/
function invalidate_user_cache($full = true)
{
global $persistent_cache;
global $persistent_cache, $logger;
$logger->info(__FUNCTION__.' starts');
if ($full)
{
@@ -2249,6 +2251,7 @@ UPDATE '.USER_CACHE_TABLE.'
$persistent_cache->purge(true);
conf_delete_param('count_orphans');
trigger_notify('invalidate_user_cache', $full);
$logger->info(__FUNCTION__.' ends');
}
/**