1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 11:28:25 +02:00

Remove console.log

This commit is contained in:
Nayam Amarshe 2023-09-11 08:00:50 +05:30
parent e48e0d3cfb
commit 626958f629
2 changed files with 1 additions and 16 deletions

View File

@ -25,14 +25,11 @@ const imageUpscayl = async (event, payload) => {
const mainWindow = getMainWindow();
if (!mainWindow) {
console.log("No main window");
logit("No main window found");
return;
}
setOverwrite(payload.overwrite);
console.log({
overwrite: payload.overwrite,
});
const model = payload.model as string;
const gpuId = payload.gpuId as string;

View File

@ -13,18 +13,6 @@ export let childProcesses: {
kill: () => boolean;
}[] = [];
console.log({
imagePath,
folderPath,
customModelsFolderPath,
outputFolderPath,
saveOutputFolder,
quality,
overwrite,
stopped,
childProcesses,
});
export function setImagePath(value: string | undefined): void {
imagePath = value;
}