diff --git a/package.json b/package.json index f452ee0..89a146b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocpi-tool", - "version": "0.0.2", + "version": "0.0.3", "description": "A command-line tool for exporting data from OCPI platforms", "main": "dist/index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index e4b4b4c..1913deb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,9 @@ import { get } from "./commands/get"; // stdout and see the progress messages written to stdout at the same time console = new Console({ stdout: stderr, stderr }); +// don't print debug output, normally speaking +console.debug = () => {}; + const program = new Command(); program