Open mafreud opened 10 months ago
Currently, stdout and stderr are Future. But I want to see logs with Stream because I can check logs in real-time.
Future
Stream
logger.success('session.stdout: ${await streamToString(session.stdout)}'); logger.err('session.stderr: ${await streamToString(session.stderr)}');
Currently, stdout and stderr are
Future
. But I want to see logs withStream
because I can check logs in real-time.