1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-23 23:21:05 +01:00

Added useLog hook

This commit is contained in:
Feenix 2023-04-30 07:12:27 +05:30
parent 08bc58bce0
commit b1db755843

View File

@ -0,0 +1,21 @@
import { logAtom } from "../../atoms/logAtom";
import log from "electron-log/renderer";
import { useSetAtom } from "jotai";
import React from "react";
const useLog = () => {
const setLogData = useSetAtom(logAtom);
const logit = (...args: any) => {
log.log(...args);
const data = [...args].join(" ");
setLogData((prevLogData) => [...prevLogData, data]);
};
return {
logit,
};
};
export default useLog;