1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/electron/utils/logit.ts

13 lines
331 B
TypeScript
Raw Normal View History

2023-09-10 19:42:18 +02:00
import log from "electron-log";
import COMMAND from "../../common/commands";
2023-09-10 19:42:18 +02:00
import { getMainWindow } from "../main-window";
2023-09-10 11:14:04 +02:00
const logit = (...args: any) => {
2023-09-10 19:42:18 +02:00
const mainWindow = getMainWindow();
2023-09-10 11:14:04 +02:00
if (!mainWindow) return;
2023-09-10 19:42:18 +02:00
log.log(...args);
2023-09-10 11:14:04 +02:00
mainWindow.webContents.send(COMMAND.LOG, args.join(" "));
};
export default logit;