Skip to content

Commit

Permalink
chore: improve log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderleegs committed Aug 15, 2023
1 parent b3d87e3 commit 20d3539
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/services/db/RepoService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ export default class RepoService extends GitHubService {
}
): Promise<{ sha: string }> {
if (this.isRepoWhitelisted(sessionData.siteName)) {
logger.info("Writing file to local Git file system")
logger.info(
`Writing file to local Git file system - Site name: ${sessionData.siteName}, directory name: ${directoryName}, file name: ${fileName}`
)
const result = await this.gitFileSystemService.create(
sessionData.siteName,
sessionData.isomerUserId,
Expand Down

0 comments on commit 20d3539

Please sign in to comment.