Code Snippet
constcliProgress=require("cli-progress");constProgressBar=cliProgress.MultiBar;constmulti=newProgressBar({format:
"Progress |"+"{bar}"+"| {percentage}% || {value}/{total} Chunks || Speed: {speed} || ETA: {eta}s",hideCursor: true,barCompleteChar: '\u2588',barIncompleteChar: '\u2591',clearOnComplete: true,stopOnComplete: true,forceRedraw: true});constbar1=multi.create(100,0);constbar2=multi.create(100,0)leti=0;constinterval=setInterval(()=>{// Simulate some processi++;// Print logsmulti.log(`Log message ${i} \n`);// Update progress barbar1.update(i);bar2.update(i);if(i===100){clearInterval(interval);multi.stop();console.log("All items processed!");}},10);Output

Expected

The logs should be clean with progress bar cleanly appearing at the bottom
please let me know If there is a way to mitigate this issue
Code Snippet
Output

Expected
The logs should be clean with progress bar cleanly appearing at the bottom
please let me know If there is a way to mitigate this issue