com.jimuwd.xian.registry-proxy 1.1.2 → 1.1.3

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.
@@ -411,7 +411,7 @@ export async function startProxyServer(proxyConfigPath, localYarnConfigPath, glo
411
411
  const connectionHandler = (socket) => {
412
412
  socket.setTimeout(60000);
413
413
  socket.setKeepAlive(true, 30000);
414
- logger.info("Server on connection", socket);
414
+ logger.debug(() => "Server on connection");
415
415
  };
416
416
  server.on('error', errHandler /*this handler will call 'reject'*/);
417
417
  server.on('connection', connectionHandler);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.jimuwd.xian.registry-proxy",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "A lightweight npm registry proxy with fallback support",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",