Backed out changeset 8ca79644b089 (bug 1240182) for xpcshell bustage on b2g

This commit is contained in:
Nigel Babu 2016-01-19 10:49:12 +05:30
parent 47476bb61f
commit f8e5a06775

View File

@ -134,7 +134,7 @@ MarionetteServer.prototype.onSocketAccepted = function(
dispatcher.onclose = this.onConnectionClosed.bind(this);
this.conns[connId] = dispatcher;
logger.debug(`Accepted connection ${connId} from ${clientSocket.host}:${clientSocket.port}`);
logger.info(`Accepted connection ${connId} from ${clientSocket.host}:${clientSocket.port}`);
dispatcher.sayHello();
transport.ready();
};
@ -142,7 +142,7 @@ MarionetteServer.prototype.onSocketAccepted = function(
MarionetteServer.prototype.onConnectionClosed = function(conn) {
let id = conn.connId;
delete this.conns[id];
logger.debug(`Closed connection ${id}`);
logger.info(`Closed connection ${id}`);
};
function isMulet() {