Skip to content

Commit

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

0 comments on commit 833021c

Please sign in to comment.