Rename debugConnections -> traceConnections
This commit is contained in:
parent
4458bcfd37
commit
93a28f4b7b
|
@ -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);
|
||||
}
|
||||
},
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue