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
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
In examples/connections_simulation.py line 170, 171 when running the example it appears that there are errors:
ERROR:root:dict_keys(['192.168.1.21:1', '192.168.1.27:1', '192.168.1.29:1'])
ERROR:root:192.168.1.2:1
ERROR:root:dict_keys(['192.168.1.3:1', '192.168.1.6:1', '192.168.1.7:1', '192.168.1.11:1'])
ERROR:root:192.168.1.3:1
Looking at the code it has:
logging.error(client.get_ident())
logging.error(client.get_connection_idents())
If this is just working as designed should it be something like:
logging.info(client.get_ident())
logging.info(client.get_connection_idents())
The text was updated successfully, but these errors were encountered:
SolarDon
changed the title
Should logging.error issue in examples/connections_simulation.py line 170, 171
Logging.error issue in examples/connections_simulation.py line 170, 171
Mar 30, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In examples/connections_simulation.py line 170, 171 when running the example it appears that there are errors:
ERROR:root:dict_keys(['192.168.1.21:1', '192.168.1.27:1', '192.168.1.29:1'])
ERROR:root:192.168.1.2:1
ERROR:root:dict_keys(['192.168.1.3:1', '192.168.1.6:1', '192.168.1.7:1', '192.168.1.11:1'])
ERROR:root:192.168.1.3:1
Looking at the code it has:
logging.error(client.get_ident())
logging.error(client.get_connection_idents())
If this is just working as designed should it be something like:
logging.info(client.get_ident())
logging.info(client.get_connection_idents())
The text was updated successfully, but these errors were encountered: