Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-05-09 15:43:13 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-05-09 15:43:13 +0300
commitb6eaf5165d403b52f25447ff3874e3cadab58f22 (patch)
treefaf9deef422902c15cbc013b920139d2f4d4db72 /internal/command
parent41b55bb0c68f149d7b695abd816ddf4f3d32b6db (diff)
Lower spawn log level to 'debug'
Diffstat (limited to 'internal/command')
-rw-r--r--internal/command/command.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/command/command.go b/internal/command/command.go
index 0f47c3213..1e0ae018b 100644
--- a/internal/command/command.go
+++ b/internal/command/command.go
@@ -112,7 +112,7 @@ func New(ctx context.Context, cmd *exec.Cmd, stdin io.Reader, stdout, stderr io.
"pid": logPid,
"path": cmd.Path,
"args": cmd.Args,
- }).Info("spawn")
+ }).Debug("spawn")
}()
command := &Command{
@@ -251,5 +251,5 @@ func (c *Command) logProcessComplete(ctx context.Context, exitCode int) {
})
}
- entry.Info("spawn complete")
+ entry.Debug("spawn complete")
}