When using PyCharm to debug robot keywords written in python, robot will capture all the console output.
This is really annoying, and am forced to use logger.console() when in the console, but even that isn't good enough because if there's an exception in the expression it won't print anything so I'm basically forced to use:
try: logger.console(expr)
except Exception as e: logger.console(e)

😲
When using PyCharm to debug robot keywords written in python, robot will capture all the console output.
This is really annoying, and am forced to use
logger.console()when in the console, but even that isn't good enough because if there's an exception in the expression it won't print anything so I'm basically forced to use:😲