socket-function 1.1.32 → 1.1.33

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/SocketFunction.ts CHANGED
@@ -297,7 +297,7 @@ export class SocketFunction {
297
297
  noServerNodeIdWarning?: "iKnowThatServerNodeIdsMayReconnect_andIHandleReconnections"
298
298
  ) {
299
299
  if (!isClientNodeId(nodeId) && !noServerNodeIdWarning) {
300
- console.warn(`Watching for disconnections of ${nodeId}. This is a server nodeId and may be alive again after disconnection. Please set the noServerNodeIdWarning flag in this argument to confirm you are handling reconnecting if the server becomes available again.`);
300
+ console.error(`Watching for disconnections of ${nodeId}. This is a server nodeId and may be alive again after disconnection. Please set the noServerNodeIdWarning flag in this argument to confirm you are handling reconnecting if the server becomes available again.`);
301
301
  }
302
302
  (async () => {
303
303
  let factory = await getCallFactory(nodeId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "socket-function",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {