mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-09-10 03:53:07 +02:00
removed unnecessary debug logging (again)
This commit is contained in:
parent
4b38aba2dc
commit
386900aa03
1 changed files with 2 additions and 5 deletions
|
@ -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
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue