Skip to content

Commit

Permalink
Logging axios response
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaswell-bcgov committed Sep 9, 2024
1 parent 833021c commit 6654eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/notifications/notifications.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ export class NotificationsController extends BaseController {
task.startIdx;
Logger.log('Making request to: ' + uri);
const response = await axios.get(uri);
Logger.log('Response: ' + JSON.stringify(response));
Logger.log(response);
return response.data;
}, broadcastSubRequestBatchSize);
// re-submit task on error if
Expand Down

0 comments on commit 6654eeb

Please sign in to comment.