We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1c2ac commit 9fa2ba1Copy full SHA for 9fa2ba1
apps/desktop/src/lib/backend/tauri.ts
@@ -96,7 +96,11 @@ class TauriDiskStore implements DiskStore {
96
}
97
98
export async function tauriLogErrorToFile(error: string) {
99
- await logErrorToFile(error);
+ try {
100
+ await logErrorToFile(error);
101
+ } catch (e: unknown) {
102
+ console.warn('unable to log error to file', e);
103
+ }
104
105
106
export function tauriPathSeparator(): string {
0 commit comments