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
otii_connection.py contains a print statement that looks like it was intended for debugging.
This print statement causes problems for command-line applications that print their own text to stdout, because it introduces random "Progress on ..." messages into application output.
The print statement should be removed, or possibly replaced with a logging output to a client-specific logger. If the message is logged (instead of printed) the application can control where and how to output it.
The text was updated successfully, but these errors were encountered:
otii_connection.py contains a print statement that looks like it was intended for debugging.
This print statement causes problems for command-line applications that print their own text to stdout, because it introduces random "Progress on ..." messages into application output.
The print statement should be removed, or possibly replaced with a logging output to a client-specific logger. If the message is logged (instead of printed) the application can control where and how to output it.
The text was updated successfully, but these errors were encountered: