removed unnecessary debug logging (again)

This commit is contained in:
uukelele-scratch 2025-02-12 19:12:34 +00:00 committed by GitHub
parent 4b38aba2dc
commit 386900aa03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,12 +34,9 @@ function processQueue() {
exec(command, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
console.error(`Stack: ${error.stack}`);
console.error(`${error.stack}`);
} else if (stderr) {
console.error(`Stderr: ${stderr}`);
} else {
console.log(`Stdout: ${stdout}`);
}
console.error(`Error: ${stderr}`);
processQueue(); // Continue with the next message in the queue
});
}