mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 09:59:59 +00:00
9da77637b2
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
19 lines
542 B
TypeScript
19 lines
542 B
TypeScript
import * as log from 'tauri-plugin-log-api'
|
|
|
|
// When running inside Tauri, catch all logs from 3rd party packages and direct them to the unified logging stream
|
|
export default defineNuxtPlugin(() => {
|
|
// eslint-disable-next-line no-global-assign
|
|
console = {
|
|
...console,
|
|
trace: log.trace,
|
|
debug: log.debug,
|
|
log: log.info,
|
|
warn: log.warn,
|
|
error: log.error,
|
|
}
|
|
|
|
window.addEventListener('unhandledrejection', err =>
|
|
log.error(err.reason))
|
|
window.addEventListener('error', err => log.error(err.error), true)
|
|
})
|