Skip to content

Commit

Permalink
chore: less noisy logging
Browse files Browse the repository at this point in the history
  • Loading branch information
TimBeyer committed Nov 14, 2023
1 parent 63fbfd7 commit e52227f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/vcs/git-repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ export class GitRepoHandler extends GitHandler {
existing = this.cache.get(log, key)

if (existing) {
params.log.silly(`Found cached repository match at ${path}`)
log.silly(`Found cached repository match at ${path}`)
return existing
}

params.log.info(`Scanning repository at ${path}`)
log.silly(`Scanning repository at ${path}`)
const files = await super.getFiles({ ...params, scanRoot: undefined })

const fileTree = FileTree.fromFiles(files)
Expand Down

0 comments on commit e52227f

Please sign in to comment.