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
The cogserver python module redirects some output, but not all print output: for example: start cogserver, telnet localhost 17001 and say print "hello" and the output comes back by telnet session.
But, if instead, you call some python library, and it has print statements in it, then those prints end up on the cogserver console, instead of the telnet console. I'm not sure under what circumstances this happens; for me, it happens when I call (for example)
and the get_gestures_cb has print statements. The problem here is that rospy.Subscriber is listening for messages asynchornoulsy, thus .. well, I don't know. It might explain it if this is not easily reproducible.
The text was updated successfully, but these errors were encountered:
The cogserver python module redirects some output, but not all print output: for example: start cogserver,
telnet localhost 17001
and sayprint "hello"
and the output comes back by telnet session.But, if instead, you call some python library, and it has print statements in it, then those prints end up on the cogserver console, instead of the telnet console. I'm not sure under what circumstances this happens; for me, it happens when I call (for example)
and the
get_gestures_cb
has print statements. The problem here is thatrospy.Subscriber
is listening for messages asynchornoulsy, thus .. well, I don't know. It might explain it if this is not easily reproducible.The text was updated successfully, but these errors were encountered: