swsnu / swppfall2020

28 stars 17 forks source link

[HW4] 디버깅 #189

Open yankee624 opened 4 years ago

yankee624 commented 4 years ago

views.py에서 코드를 작성할 때, 디버깅을 위해 print 문들을 넣어서 중간결과값들을 확인하고 싶은데 이러한 print문들은 어떻게 해야 볼 수 있을까요? (Postman에서는 출력값들을 볼 수 없는 것 같습니다.) 아니면 다른 디버깅 방법이 있나요?

kooyunmo commented 4 years ago

view function에 print를 넣은 경우 python manage.py runserver를 한 CLI 창에서 프린트 결과를 볼 수 있습니다.

yankee624 commented 4 years ago

감사합니다!

jaewooklee93 commented 4 years ago

tests.py에서 직접 해당 API를 호출하여도 views.py 함수 안에 들어있는 print가 출력되는 걸 볼 수 있었습니다.