mirror of https://github.com/docker/docs.git
Removing unnecessary logs
Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
parent
1c82b21a1c
commit
729f0c4920
|
@ -32,7 +32,6 @@ var Docker = {
|
|||
delay = delay || 1000;
|
||||
var tryCount = 1;
|
||||
while (true) {
|
||||
console.log('Connecting: ' + tryCount + ' tries...');
|
||||
try {
|
||||
yield new Promise((resolve, reject) => {
|
||||
this._client.listContainers((err) => {
|
||||
|
|
|
@ -222,7 +222,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
|
|||
setup: Promise.coroutine(function * () {
|
||||
while (true) {
|
||||
try {
|
||||
console.log('Starting Steps');
|
||||
var ip = yield this.run();
|
||||
if (!ip || !ip.length) {
|
||||
throw {
|
||||
|
@ -231,8 +230,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
|
|||
ip: ip,
|
||||
};
|
||||
}
|
||||
console.log('Finished Steps');
|
||||
console.log(ip);
|
||||
docker.setup(ip, machine.name());
|
||||
yield docker.waitForConnection();
|
||||
metrics.track('Setup Finished');
|
||||
|
|
Loading…
Reference in New Issue