0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

readline: Remove XXX and output debuglog

Remove a comment that has a word 'XXX'.
And add a line to output debuglog of error.

PR-URL: https://github.com/nodejs/node/pull/4690
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Kohei TAKATA 2016-01-15 12:49:24 +09:00 committed by James M Snell
parent 8bad51977a
commit ad63d350d4

View File

@ -9,6 +9,7 @@
const kHistorySize = 30;
const util = require('util');
const debug = util.debuglog('readline');
const internalUtil = require('internal/util');
const inherits = util.inherits;
const Buffer = require('buffer').Buffer;
@ -380,7 +381,7 @@ Interface.prototype._tabComplete = function() {
self.resume();
if (err) {
// XXX Log it somewhere?
debug('tab completion error %j', err);
return;
}