In my python daemon I use this script to log messages into GUI log-tab:
#!/usr/bin/env python
import socket
msg = "my message"
__socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
__socket.connect(('127.0.0.1', 30002))
__socket.send("textmsg(\"" + msg + "\")\n")
__socket.close()
this will produce this on CB3 simulator:
and this on eSeries simulator:
As you can see I cannot log through script in eSeries simulator.
I’ve also tried to wrap the textmsg function into “def my_wrap_function()” (paying attention to the \nend\n) but the results are the same: I can see in the GUI log-tab the messages “Program my_wrap_function started” but no textmsg log.
I’m using for the tests the 3.9.0.64176 simulator and the 5.3.0.64176

