[Fixed]-Django view won't stop at breakpoint using Eclipse environment

1đź‘Ť

âś…

Most major ide’s have two different ways of running normally,

  • Debug – This is usually denoted by some sort of bug image (as shown in your screenshot) or separate symbol

  • Run – This is usually a “play” button

The debug mode is the one you want, this is the one that inserts debug symbols. The run doesn’t set any of these up so you will find that your program may run slightly faster this way, which makes it more advantageous when modifying files that don’t require you to restart the server.

👤Sayse

Leave a comment