Quote:
Originally Posted by nir34
Hi all,i am a python beginner,when i attach my python code to sigil,breakpoint will not hit,what's wrong is it?How to debug during developing a sigil plugin?Any help please.I use vs2019 as IDE.
|
I simply print the value of variables to the Plugin Runner window and add a return -1 statement, when I want to check something:
Code:
def run(bk):
# your code
print(your_variable)
return -1