We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d52afe4 + 9432b98 commit 695e90dCopy full SHA for 695e90d
lib/logs.js
@@ -71,7 +71,10 @@ module.exports = {
71
ps: (base, token)=>{
72
var child = chp.spawn(base,token);
73
child.stdout.on('data', (data) => {
74
- process.stdout.write(`${data}`);
+ process.stdout.write(`stdout : ${data}`);
75
+ });
76
+ child.stderr.on('data', (data) => {
77
+ process.stderr.write(`stderr : ${data}`);
78
});
79
}
80
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "orcinus",
3
- "version": "0.4.3",
+ "version": "0.4.4",
4
"description": "Container orchestration tools",
5
"main": "cli.js",
6
"scripts": {
0 commit comments