Route application diagnostics through owned log paths

This commit is contained in:
vorotamoroz
2026-07-18 16:53:20 +00:00
parent 3e22c2eda8
commit 81d27a932f
22 changed files with 154 additions and 105 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
<script lang="ts">
import type { MenuItem } from "@/apps/browser/BrowserMenu";
import { LOG_LEVEL_VERBOSE, Logger } from "octagonal-wheels/common/logger";
type Props = {
item: MenuItem;
@@ -13,7 +14,7 @@
item.handler?.();
}
} catch (ex) {
console.error(ex);
Logger(ex, LOG_LEVEL_VERBOSE, "browser-menu");
}
closeMenu();
}