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;
|
delay = delay || 1000;
|
||||||
var tryCount = 1;
|
var tryCount = 1;
|
||||||
while (true) {
|
while (true) {
|
||||||
console.log('Connecting: ' + tryCount + ' tries...');
|
|
||||||
try {
|
try {
|
||||||
yield new Promise((resolve, reject) => {
|
yield new Promise((resolve, reject) => {
|
||||||
this._client.listContainers((err) => {
|
this._client.listContainers((err) => {
|
||||||
|
|
|
@ -222,7 +222,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
|
||||||
setup: Promise.coroutine(function * () {
|
setup: Promise.coroutine(function * () {
|
||||||
while (true) {
|
while (true) {
|
||||||
try {
|
try {
|
||||||
console.log('Starting Steps');
|
|
||||||
var ip = yield this.run();
|
var ip = yield this.run();
|
||||||
if (!ip || !ip.length) {
|
if (!ip || !ip.length) {
|
||||||
throw {
|
throw {
|
||||||
|
@ -231,8 +230,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
|
||||||
ip: ip,
|
ip: ip,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
console.log('Finished Steps');
|
|
||||||
console.log(ip);
|
|
||||||
docker.setup(ip, machine.name());
|
docker.setup(ip, machine.name());
|
||||||
yield docker.waitForConnection();
|
yield docker.waitForConnection();
|
||||||
metrics.track('Setup Finished');
|
metrics.track('Setup Finished');
|
||||||
|
|
Loading…
Reference in New Issue