diff --git a/utils/log/log.service.ts b/utils/log/log.service.ts index 216e0931..a4c83c8e 100644 --- a/utils/log/log.service.ts +++ b/utils/log/log.service.ts @@ -36,12 +36,12 @@ export class LogService { } logUploadDOIs(properties: EnvProperties, dois:number){ - return this.http.post(properties.logFilesService, new UploadLog(dois) ); + return this.http.post(properties.logServiceUrl, new UploadLog(dois) ); } logLink(properties: EnvProperties){ - return this.http.post(properties.logFilesService, new LinkLog() ); + return this.http.post(properties.logServiceUrl, new LinkLog() ); } logOrcidLink(properties: EnvProperties, action:'added'|'removed', title: string, doi: string){ - return this.http.post(properties.logFilesService, new OrcidLinkLog(action, title, doi) ); + return this.http.post(properties.logServiceUrl, new OrcidLinkLog(action, title, doi) ); } }