简体   繁体   中英

Clearing Eclipse's output console with PyDev Remote Debugger(pydevd)?

I have these 2 lines at the beginning of my script and remote debugging works very nicely:

from pysrc.pydevd import settrace
settrace('localhost', stdoutToServer=True, stderrToServer=True, suspend=False)

My question is, is there a way to clear Eclipse's console every time settrace is called? I'm currently doing it manually, which gets a bit annoying.

Unfortunately no, there's no way to do that automatically.

What you could do however is calling settrace and right afterwards do something as:

print('\n'*40 + '*'*80) 

so that you know that the debug session started at that point (then maybe you wouldn't need to clear it?)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM