Hi:
when I use my local spark-server,I found that the log below is always show,but I don't wan't to this to be shown so frequently;
[2019-02-20T10:59:04.459Z] INFO: DeviceServer.js/15464 on DTIT-YJin: Connected Devices (devices=0, sockets=0)
I think this can be used as a configuration item.
setInterval( (): void => server.getConnections((error: Error, count: number) => { logger.info( { devices: this._devicesById.size, sockets: count }, 'Connected Devices', ); }), 10000, );
Hi: when I use my local spark-server,I found that the log below is always show,but I don't wan't to this to be shown so frequently;
[2019-02-20T10:59:04.459Z] INFO: DeviceServer.js/15464 on DTIT-YJin: Connected Devices (devices=0, sockets=0)
I think this can be used as a configuration item.setInterval( (): void => server.getConnections((error: Error, count: number) => { logger.info( { devices: this._devicesById.size, sockets: count }, 'Connected Devices', ); }), 10000, );