removed logging statements ( used for debug in local earlier)

This commit is contained in:
Manoj -
2021-02-02 23:02:31 +11:00
committed by GitHub
parent 786aa9ae3a
commit 07f86e88ff
@@ -133,10 +133,6 @@ export const runCommand = async ({
process.stderr.on('data', stream => {
logStream.write(stream);
// added below change to make OS ( child process) exception to the backend logs
const bufferbase64 = Buffer.from(stream, 'base64');
const textAscii = bufferbase64.toString('ascii');
console.log(' Process Stderror trace: ', textAscii);
});
process.on('error', error => {