We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b2770 commit b81c3d6Copy full SHA for b81c3d6
components/content-service/pkg/initializer/git.go
@@ -99,8 +99,9 @@ func (ws *GitInitializer) Run(ctx context.Context, mappings []archive.IDMapping)
99
return src, xerrors.Errorf("git initializer gitClone: %w", err)
100
}
101
102
+ // this is only needed for prebuilds using PVC, so if it errors out, output only Debug log to prevent log spam
103
if err := ws.AddSafeDirectory(ctx, ws.Location); err != nil {
- log.WithError(err).Warn("git initializer AddSafeDirectory")
104
+ log.WithError(err).Debug("git initializer AddSafeDirectory")
105
106
107
if ws.Chown {
0 commit comments