mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-14 18:57:40 +01:00
18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
import { createProxy } from '$electron/helpers/index'
|
|
import { shell } from 'electron'
|
|
import log from 'electron-log/main.js'
|
|
|
|
log.transports.console.level = false
|
|
|
|
const levels = Object.keys(log.functions)
|
|
|
|
const getFilePath = () => log.transports.file.getFile()?.path
|
|
|
|
export default {
|
|
...createProxy(log, ['initialize', ...levels]),
|
|
levels,
|
|
functions: createProxy(log, levels),
|
|
getFilePath,
|
|
openInEditor: () => shell.openPath(getFilePath()),
|
|
}
|