Consolidate logstring generation into private fn
This commit is contained in:
parent
e8520e3de2
commit
6fa87fbf7c
|
@ -69,14 +69,7 @@ Connection.prototype.toJSON = function() {
|
||||||
//
|
//
|
||||||
// Returns the result of the supplied callback function
|
// Returns the result of the supplied callback function
|
||||||
Connection.prototype.connect = function(callback) {
|
Connection.prototype.connect = function(callback) {
|
||||||
var msg = "Connecting to '" + this.name + "'";
|
var msg = this._logstring("Connecting to");
|
||||||
|
|
||||||
if (this.port != null) {
|
|
||||||
msg += " on port " + this.port;
|
|
||||||
}
|
|
||||||
|
|
||||||
msg += ".";
|
|
||||||
|
|
||||||
Logger.info(msg);
|
Logger.info(msg);
|
||||||
return this.adaptor.connect(callback);
|
return this.adaptor.connect(callback);
|
||||||
};
|
};
|
||||||
|
@ -87,14 +80,7 @@ Connection.prototype.connect = function(callback) {
|
||||||
//
|
//
|
||||||
// Returns nothing
|
// Returns nothing
|
||||||
Connection.prototype.disconnect = function(callback) {
|
Connection.prototype.disconnect = function(callback) {
|
||||||
var msg = "Disconnecting from '" + this.name + "'";
|
var msg = this._logstring("Disconnecting from");
|
||||||
|
|
||||||
if (this.port != null) {
|
|
||||||
msg += " on port " + this.port;
|
|
||||||
}
|
|
||||||
|
|
||||||
msg += ".";
|
|
||||||
|
|
||||||
Logger.info(msg);
|
Logger.info(msg);
|
||||||
return this.adaptor.disconnect(callback);
|
return this.adaptor.disconnect(callback);
|
||||||
};
|
};
|
||||||
|
@ -125,3 +111,15 @@ Connection.prototype.halt = function(callback) {
|
||||||
Logger.info(msg);
|
Logger.info(msg);
|
||||||
return this.disconnect(callback);
|
return this.disconnect(callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Connection.prototype._logstring = function _logstring(action) {
|
||||||
|
var msg = action + " '" + this.name + "'";
|
||||||
|
|
||||||
|
if (this.port != null) {
|
||||||
|
msg += " on port " + this.port;
|
||||||
|
}
|
||||||
|
|
||||||
|
msg += ".";
|
||||||
|
|
||||||
|
return msg;
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue