LRE Rest API - Python - Are there server logs? If so, where?

Hi all

I'm just getting started with LRE API Rest and I'm facing some issues.    

I'm using Python to call the API.   This code isn't working and giving back 500 server error with generalized response,    Are there server logs that will show the detailed error?  And where are the located?

Code Snippet

def RunTest(TestId, TestInstance):


    url = 'loa-lre-qa.pncint.net/.../StartRun + str(TestId)
    headers = {'Content-type': 'application/json'}
    data = {"DurationInMinutes":30,"IsUseVuds":False,"VudsAmount":0,"IsNewReservationMode":True,"PostRunAction":0,"TestInstanceId":TestInstance,"ReservationId":-1}


    response = s.post(url, data=json.dumps(data), headers=headers)

    Output_Debug(url, response.status_code, response.content)