From 67972683eaf7868de69282bb7cbb344d45dd393c Mon Sep 17 00:00:00 2001 From: ahrav Date: Thu, 27 Apr 2023 17:14:00 -0700 Subject: [PATCH] [chore] - format log msg (#1299) * format log msg. * snake. * lowercase repo. --- pkg/sources/git/git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sources/git/git.go b/pkg/sources/git/git.go index 446590d33927..3d986b7f9a39 100644 --- a/pkg/sources/git/git.go +++ b/pkg/sources/git/git.go @@ -578,7 +578,7 @@ func (s *Git) ScanRepo(ctx context.Context, repo *git.Repository, repoPath strin } scanTime := time.Now().Unix() - start - ctx.Logger().V(1).Info("scanning git repo complete", "Repo", repoUrl, "path", repoPath, "time (seconds)", scanTime) + ctx.Logger().V(1).Info("scanning git repo complete", "repo", repoUrl, "path", repoPath, "time_seconds", scanTime) return nil }