spooketti / VividFusionServer

Backend based in Flask for VividFusion
0 stars 0 forks source link

Debugging #1

Open spooketti opened 6 months ago

spooketti commented 6 months ago
  1. Running Server In Debug Mode image
  2. Set break point at start of endpoint image
  3. Start in frontend with split screen loading source for an API fetch using GET. image
  4. Breakpoint in fetch's .then image 5.Run frontend, screen capture break at fetch while examining Body image 6.Press play on frontend, observe stop inside of backend image 7.Press step over on backend until you have obtained data from database, screen capture Python Object (user element loads after backend steps) image 8.Press play button to end backend debugging session. image 9.Return to frontend debug session 10.Step in until you see data, screen capture capturing break point and Data. image image
advikg commented 6 months ago

Score: 1.84/2.00

The issue was made well and you seem like you know what you are doing. Good knowledge of breakpoints, one thing that could be improved would be to add more screenshots of data in VSCode, and showing monitoring of data used throughout breakpoints. Other than that it looks great.

-Advik

Akhil353 commented 6 months ago

1.83/2

This issue is very easy to read and shows all the debugging steps needed. I can clearly see how this code is being debugged, and I can see that a lot of effort was put into this. Good job!