Give the PHP layer somewhere to record what it swallowed

This commit is contained in:
Gmer4Lfe
2026-08-24 18:51:36 -04:00
parent 492757ce70
commit eda411c0be
6 changed files with 55 additions and 5 deletions
+1 -1
View File
@@ -468,7 +468,7 @@ function vv_script_library(): array {
if (in_array($rel, $orchIds) || isset($confMap[$rel]) || isset($cardIds[$rel]) || isset($schedule[$rel])) continue;
$library[] = ['id' => $rel, 'label' => vv_pretty_label(basename($rel, '.sh'))];
}
} catch (Exception $e) {}
} catch (Exception $e) { vv_log_error('include/scheduler.php', 'script library walk failed: ' . $e->getMessage()); }
usort($library, fn($a, $b) => strcmp($a['id'], $b['id']));
return $library;
}