Skip to content

Commit

Permalink
output the scmUrl value in message body (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
GraceRuan authored Sep 14, 2024
1 parent 6168aee commit 83c2017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/collection/account.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ export class AccountService {
this.auditService.recordToolsSync(
'start',
'unknown',
`Start sync: service.collection.scmUrl`,
`Start sync: ${service.collection.scmUrl}`,
projectName,
serviceName,
);
Expand All @@ -372,7 +372,7 @@ export class AccountService {
this.auditService.recordToolsSync(
'end',
'success',
`End sync: service.collection.scmUrl`,
`End sync: ${service.collection.scmUrl}`,
projectName,
serviceName,
);
Expand All @@ -386,7 +386,7 @@ export class AccountService {
this.auditService.recordToolsSync(
'end',
'failure',
`End sync: service.collection.scmUrl`,
`End sync: ${service.collection.scmUrl}`,
projectName,
serviceName,
httpErr,
Expand Down

0 comments on commit 83c2017

Please sign in to comment.