You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in lib/client.js line 83, for each and every update a line is added to the log with level info.
adapter.log.info(`send2Server ${id}[${topic}]`);
If you deal with data that gets updated every second, this can really get messy in the log.
From my point of view this should be changed to debug level.
Another way would be to add an option to disable update information in the log.
The text was updated successfully, but these errors were encountered:
Currently in
lib/client.js line 83
, for each and every update a line is added to the log with level info.If you deal with data that gets updated every second, this can really get messy in the log.
From my point of view this should be changed to debug level.
Another way would be to add an option to disable update information in the log.
The text was updated successfully, but these errors were encountered: