mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
don't log base64 progress images
This commit is contained in:
parent
5e87062cf8
commit
9fc09aa4bd
517
frontend/dist/assets/index.cc049b93.js
vendored
517
frontend/dist/assets/index.cc049b93.js
vendored
File diff suppressed because one or more lines are too long
2
frontend/dist/index.html
vendored
2
frontend/dist/index.html
vendored
@ -6,7 +6,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>InvokeAI - A Stable Diffusion Toolkit</title>
|
<title>InvokeAI - A Stable Diffusion Toolkit</title>
|
||||||
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
|
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
|
||||||
<script type="module" crossorigin src="./assets/index.cc049b93.js"></script>
|
<script type="module" crossorigin src="./assets/index.b0a4a822.js"></script>
|
||||||
<link rel="stylesheet" href="./assets/index.52c8231e.css">
|
<link rel="stylesheet" href="./assets/index.52c8231e.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -146,12 +146,14 @@ const makeSocketIOListeners = (
|
|||||||
...data,
|
...data,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
dispatch(
|
if (!data.isBase64) {
|
||||||
addLogEntry({
|
dispatch(
|
||||||
timestamp: dateFormat(new Date(), 'isoDateTime'),
|
addLogEntry({
|
||||||
message: `Intermediate image generated: ${data.url}`,
|
timestamp: dateFormat(new Date(), 'isoDateTime'),
|
||||||
})
|
message: `Intermediate image generated: ${data.url}`,
|
||||||
);
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user