Skip to content

Commit 9cc1e77

Browse files
committed
Added handshaken instrumentation
1 parent b9ab031 commit 9cc1e77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,6 @@ Manager.prototype.handleClient = function (data, req) {
335335

336336
// handle packets for the client (all namespaces)
337337
self.store.on('message:' + data.id, function (packet) {
338-
self.log.info('manager received client packet');
339338
self.handlePacket(data.id, packet);
340339
});
341340
}
@@ -457,6 +456,7 @@ Manager.prototype.handleHandshake = function (data, req, res) {
457456
}
458457

459458
res.end(hs);
459+
self.log.info('handshaken', id);
460460
});
461461
} else {
462462
writeErr(403, 'handshake unauthorized');

0 commit comments

Comments
 (0)