Removing unnecessary logs

Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
Jeffrey Morgan 2015-04-17 11:37:37 -04:00
parent 1c82b21a1c
commit 729f0c4920
2 changed files with 0 additions and 4 deletions

View File

@ -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) => {

View File

@ -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');