From 774c6739e794665bc5e2c40aa84921b7f2a26387 Mon Sep 17 00:00:00 2001 From: Tee Jay Date: Tue, 17 Dec 2019 17:48:30 +0800 Subject: [PATCH] fix(consola): use `options.stderr` (#77) --- src/consola.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consola.js b/src/consola.js index 2f9f9b6..40f955b 100644 --- a/src/consola.js +++ b/src/consola.js @@ -12,7 +12,7 @@ class Consola { this._defaults = options.defaults || {} this._async = typeof options.async !== 'undefined' ? options.async : null this._stdout = options.stdout - this._stderr = options.stdout + this._stderr = options.stderr this._mockFn = options.mockFn this._throttle = options.throttle || 2000