fix: remove detect install on main log stream

This commit is contained in:
a7m-1st 2025-10-14 14:10:20 +03:00 committed by Saedbhati
parent 83c1ffb289
commit 97407aa823

View file

@ -232,8 +232,6 @@ class InstallLogs {
displayFilteredLogs(data:String) {
if (!data) return;
const msg = data.toString().trimEnd();
//Detect if uv sync is run
detectInstallationLogs(msg);
if (msg.toLowerCase().includes("error") || msg.toLowerCase().includes("traceback")) {
log.error(`BACKEND: [DEPS INSTALL] ${msg}`);
safeMainWindowSend('install-dependencies-log', { type: 'stderr', data: data.toString() });