Chore: silence debug logging across all pages (log_lvl → 0)
Set log_lvl to 0 in all pages and layouts that had it left at 1 or 2 from development. Also remove two hardcoded `log_lvl = 2` overrides inside function bodies in reports_files.svelte and reports_presenters.svelte that were forcing verbose output regardless of the module-level setting. Affected: launcher location page, leads pages (2), pres_mgmt reports (2), presenter +page.ts, IDAA layouts (2), IDAA archives, IDAA recovery meetings page, journals pages (2).
This commit is contained in:
@@ -46,7 +46,7 @@ export async function load({ params, parent }) {
|
||||
hidden: 'all',
|
||||
limit: 150,
|
||||
try_cache: true,
|
||||
log_lvl: 2
|
||||
log_lvl: 0
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -254,7 +254,6 @@
|
||||
order_by_li?: any;
|
||||
log_lvl?: number;
|
||||
}) {
|
||||
log_lvl = 2;
|
||||
if (log_lvl) {
|
||||
console.log('handle_qry__event_file()');
|
||||
}
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
// try_cache?: boolean,
|
||||
log_lvl?: number;
|
||||
}) {
|
||||
log_lvl = 2;
|
||||
if (log_lvl) {
|
||||
console.log('handle_search__event_presenter()');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user