Jycraft / jycraft

Extend Minecraft servers with Python using Jython.
BSD 3-Clause "New" or "Revised" License
13 stars 2 forks source link

print doesn't write to the console in Spigot #16

Closed pauleveritt closed 8 years ago

pauleveritt commented 8 years ago

In the Canary version, stdout seems to be sent to the console. Doing print 'hello' thus spews something to the console.

What's the right way, in Python, to get something to appear on the console for Spigot?

BenLewis-Seequent commented 8 years ago

Now any output standard output/exceptions from the interpreter is now sent to the console as well as the client.

pauleveritt commented 8 years ago

Works, thanks.