mirror of
https://github.com/upscayl/upscayl.git
synced 2025-01-31 20:15:25 +01:00
Remove console.log
This commit is contained in:
parent
e48e0d3cfb
commit
626958f629
@ -25,14 +25,11 @@ const imageUpscayl = async (event, payload) => {
|
|||||||
const mainWindow = getMainWindow();
|
const mainWindow = getMainWindow();
|
||||||
|
|
||||||
if (!mainWindow) {
|
if (!mainWindow) {
|
||||||
console.log("No main window");
|
logit("No main window found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
setOverwrite(payload.overwrite);
|
setOverwrite(payload.overwrite);
|
||||||
console.log({
|
|
||||||
overwrite: payload.overwrite,
|
|
||||||
});
|
|
||||||
|
|
||||||
const model = payload.model as string;
|
const model = payload.model as string;
|
||||||
const gpuId = payload.gpuId as string;
|
const gpuId = payload.gpuId as string;
|
||||||
|
@ -13,18 +13,6 @@ export let childProcesses: {
|
|||||||
kill: () => boolean;
|
kill: () => boolean;
|
||||||
}[] = [];
|
}[] = [];
|
||||||
|
|
||||||
console.log({
|
|
||||||
imagePath,
|
|
||||||
folderPath,
|
|
||||||
customModelsFolderPath,
|
|
||||||
outputFolderPath,
|
|
||||||
saveOutputFolder,
|
|
||||||
quality,
|
|
||||||
overwrite,
|
|
||||||
stopped,
|
|
||||||
childProcesses,
|
|
||||||
});
|
|
||||||
|
|
||||||
export function setImagePath(value: string | undefined): void {
|
export function setImagePath(value: string | undefined): void {
|
||||||
imagePath = value;
|
imagePath = value;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user