Skip to content

Commit

Permalink
Added logging fieldcapture#3049
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisala committed Mar 26, 2024
1 parent 70128fd commit 78a4408
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions grails-app/services/au/org/ala/ecodata/ParatooService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,10 @@ class ParatooService {
Map authHeader = getAuthHeader()

String url = paratooBaseUrl + apiEndpoint
Map response = webService.doPost(url, payload, false, authHeader)?.resp
Map response = webService.doPost(url, payload, false, authHeader)
log.debug((response as JSON).toString())
response?.collections

response?.resp?.collections
}


Expand Down

0 comments on commit 78a4408

Please sign in to comment.