Hi,
With a simple script python, we can use 'print' to put a message in the console
But, with a python plugin this command don't work
I show my code here:
def Command(self, id, msg):
if id == btnID:
print 'Hello World!' #silently fails (no message in the console)
print('Hello World!') #silently fails (no message in the console)
gui.MessageDialog('Hello World!') #opens a dialog box and displays the message
Thank you for your observations