Skip to content

Commit 1c56529

Browse files
committed
fix(logging): remove clone url from log message
1 parent eaf8063 commit 1c56529

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloner/cloner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ func cloneGitRepository(destDir, gitRepoURL string) error {
8484
log.WithError(err).WithFields(log.Fields{
8585
"op": "gitError",
8686
"stderr": stderr,
87-
}).WithField("url", gitRepoURL).Warnf("missing repo")
87+
}).Warnf("missing repo")
8888
} else {
8989
log.WithError(err).WithFields(log.Fields{
9090
"op": "gitError",
9191
"stderr": stderr,
92-
}).WithField("url", gitRepoURL).Errorf("unhandled git error")
92+
}).Errorf("unhandled git error")
9393
}
9494

9595
return errors.New("")

0 commit comments

Comments
 (0)