Skip to content

Commit 1b45ab7

Browse files
author
Kevin Gravier
committed
Replaced console.debug with process.stderr.write
1 parent 0a1dee5 commit 1b45ab7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

easyimage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ exports.execute = require('./lib/execute').execute;
3131
* @returns {*|PromiseLike<any>}
3232
*/
3333
exports.exec = function(cmd) {
34-
console.debug('This command is deprecated. Please update to using execute'.yellow);
34+
process.stderr.write('This command is deprecated. Please update to using execute\n'.yellow);
3535
var deferred = Q.defer();
3636

3737
process.nextTick(function () {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "easyimage",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "A promise-based, user-friendly module for processing images in Node.js",
55
"license": "MIT",
66
"main": "easyimage.js",

0 commit comments

Comments
 (0)