BlackStartx / PyCharm-Blender-Plugin

A PyCharm Plugin that simplify the development of Blender Add-On inside the PyCharm IDE.
MIT License
142 stars 13 forks source link

print nothing #4

Closed MoConWu closed 3 years ago

MoConWu commented 3 years ago

when print i got nothing

and when closed blender, i got that

MoConWu commented 3 years ago

used debug

BlackStartx commented 3 years ago

Hi MoConWu~

Yes... sadly the print function in the run or debug console is currently a little buggy, Right now, the workarround is to use the python logging library.

The output should work way better, and it works in both run or debug console.

Example:

import logging

logging.log(logging.INFO, "Hello World!")

Sorry for the issue,

- BlackStartx

MoConWu commented 2 years ago

Hi,I can get log.WARNING/ERROR but not get log.INFO

Where can set show level, THANKS