Skip to content

Commit bd5eff9

Browse files
committed
0.0.7 removed console.logs
1 parent 3fd8b9f commit bd5eff9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Docker.prototype.command = function(command, callback) {
3939
var dockerMachine = new DockerMachine({});
4040

4141
return dockerMachine.command('config ' + self.machinename).then(function (data) {
42-
console.log('data = ', data);
42+
//console.log('data = ', data);
4343
self.machineconfig = data.machine.config;
4444
});
4545

@@ -61,7 +61,7 @@ Docker.prototype.command = function(command, callback) {
6161
if (self.cwd) {
6262
exec_options.cwd = self.cwd;
6363
}
64-
console.log('exec options =', exec_options);
64+
//console.log('exec options =', exec_options);
6565

6666
return exec(exec_command, exec_options);
6767

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-cli-js",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "A wrapper for the docker CLI",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)