diff options
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | src/lib/index.js | 13 |
2 files changed, 1 insertions, 13 deletions
diff --git a/package.json b/package.json index b0fc375..b52dc00 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "mocha": "^4.0.0" }, "dependencies": { - "debug": "^3.1.0", "dockerode": "^2.5.1" }, "scripts": { diff --git a/src/lib/index.js b/src/lib/index.js index 5332bb4..7ef814b 100644 --- a/src/lib/index.js +++ b/src/lib/index.js @@ -1,5 +1,4 @@ import { normalize } from 'path'; -import createDebug from 'debug'; import Docker from 'dockerode'; import { statSync } from 'fs'; @@ -222,7 +221,7 @@ export default class Containers { callback(error); } - self._docker.modem.followProgress(stream, callback, self.debug); + self._docker.modem.followProgress(stream, callback); }); } @@ -260,14 +259,4 @@ export default class Containers { _isObject(value) { return typeof value === 'object'; } - - /** - * @param {*} Any variables - * @description A simple debugger. - */ - debug() { - var args = Array.prototype.slice.call(arguments); - var debug = createDebug('containers'); - debug.apply(null, args); - } }
\ No newline at end of file |