@youpaichris/logger 6.2.4 → 6.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -276,7 +276,7 @@ class Logger {
|
|
276
276
|
output: process.stdout
|
277
277
|
});
|
278
278
|
try {
|
279
|
-
prompt.length === 0 ? this.
|
279
|
+
prompt.length === 0 ? this.debug("Please input:") : this.debug(...prompt);
|
280
280
|
return await new Promise(resolve => rl.question('', resolve));
|
281
281
|
} finally {
|
282
282
|
rl.close();
|