Skip to content

Commit 9981352

Browse files
In case of logs strategy, get a unified stream without separation between stdout and stderr stream
1 parent f73422e commit 9981352

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/ContainerLogger.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class ContainerLogger {
3737
this._handleTtyStream(stderr, true);
3838
} else {
3939
this._handleNonTtyStream(stdout, false);
40-
this._handleNonTtyStream(stderr, true);
4140
}
4241

4342
stdout.on('end', () => {
@@ -77,11 +76,6 @@ class ContainerLogger {
7776
Q.ninvoke(this.containerInterface, 'logs', {
7877
follow: 1,
7978
stdout: 1,
80-
stderr: 0
81-
}),
82-
Q.ninvoke(this.containerInterface, 'logs', {
83-
follow: 1,
84-
stdout: 0,
8579
stderr: 1
8680
})
8781
]);

0 commit comments

Comments
 (0)