mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 15:40:21 +01:00
22 lines
432 B
TypeScript
22 lines
432 B
TypeScript
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;
|