remove debugs (too noisy)

This commit is contained in:
Girish Ramakrishnan
2017-10-16 12:34:09 -07:00
parent 89fc8efc67
commit 1e72d2d651

View File

@@ -367,8 +367,6 @@ function getContainerIdByIp(ip, callback) {
assert.strictEqual(typeof ip, 'string');
assert.strictEqual(typeof callback, 'function');
debug('get container by ip %s', ip);
var docker = exports.connection;
docker.listNetworks({}, function (error, result) {
@@ -390,8 +388,6 @@ function getContainerIdByIp(ip, callback) {
}
if (!containerId) return callback(new Error('No container with that ip'));
debug('found container %s with ip %s', containerId, ip);
callback(null, containerId);
});
}