Rename debugConnections -> traceConnections

This commit is contained in:
Bryan Ashby 2015-12-07 21:45:48 -07:00
parent 4458bcfd37
commit 93a28f4b7b
2 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ SSHServerModule.prototype.createServer = function() {
ident : 'enigma-bbs-' + enigVersion + '-srv',
// Note that sending 'banner' breaks at least EtherTerm!
debug : function debugSsh(dbgLine) {
if(true === Config.servers.ssh.debugConnections) {
if(true === Config.servers.ssh.traceConnections) {
Log.trace('SSH: ' + dbgLine);
}
},

View File

@ -499,7 +499,7 @@ function TelnetClient(input, output) {
});
this.connectionDebug = function(info, msg) {
if(Config.servers.telnet.debugConnections) {
if(Config.servers.telnet.traceConnections) {
self.log.trace(info, 'Telnet: ' + msg);
}
};