hsync 0.16.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/connection.js +1 -1
- package/package.json +1 -1
package/connection.js
CHANGED
|
@@ -206,7 +206,7 @@ async function createHsync(config) {
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
function addSocketListener (port, hostName, targetPort, targetHost) {
|
|
209
|
-
console.log('addSocketListener', port, hostName, targetPort, targetHost);
|
|
209
|
+
// console.log('addSocketListener', port, hostName, targetPort, targetHost);
|
|
210
210
|
const handler = createSocketListenHandler({port, hostName, targetPort, targetHost, hsyncClient});
|
|
211
211
|
const id = b64id.generateId();
|
|
212
212
|
socketListeners[id] = {handler, info: {port, hostName, targetPort, targetHost}, id};
|