Skip to content

Commit

Permalink
fix: url logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Nov 8, 2024
1 parent d60fdff commit b4e1ec3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ export async function createPipelineHtmlSource(
'PIPELINE ID TO CREATE HTML SOURCE FOR: ',
production_settings.pipelines[i].pipeline_id
);
Log().info(
'Request URL:',
`${LIVE_BASE_API_PATH}/pipelines/${production_settings.pipelines[i].pipeline_id}/renderingengine/html`
);
const response = await fetch(
new URL(
LIVE_BASE_API_PATH +
Expand Down Expand Up @@ -353,6 +357,10 @@ export async function createPipelineMediaSource(
'CREATING MEDIA FOR PIPELINE ID: ',
production_settings.pipelines[i].pipeline_id
);
Log().info(
'Request URL:',
`${LIVE_BASE_API_PATH}/pipelines/${production_settings.pipelines[i].pipeline_id}/renderingengine/media`
);
const response = await fetch(
new URL(
LIVE_BASE_API_PATH +
Expand Down

0 comments on commit b4e1ec3

Please sign in to comment.